实际案例
很多应用程序都有浏览用户的历史记录的功能,如:
- 浏览器可以查看最近访问过的网页;
- 视频播放器可以查看最近播放过的视频文件;
- Shell可以查看用户输入过的命令;
......
现在我们制作了一个简单的猜数字的小游戏,添加历史记录功能,显示用户最近猜过的数字,如何实现?小游戏代码如下:
# -*- coding: utf-8 -*-
from random import randint
N = randint(0, 100)
def guess(k):
if k == N:
print 'right'
return True
if k < N:
print '%s is less-than N' % k
else:
print '%s is greater-than N' % k
return False
while True:
line = raw_input("please input a number: ")
# 判断用户输入的数据是否为数字
if line.isdigit():
k = int(line)
if guess(k):
break
用户猜数字,一遍猜中的概论是很低很低的,所以用户猜数字要猜很多很多遍才可能猜中。在猜数字的过程中,由于用户猜的数字次数很多,以至于用户会忘记猜过的数字。因此,我们是有必要添加历史记录功能的。这里为了简化操作,只显示用户最近输入的5个数字。
那如何实现这一功能呢?我们可以使用容量为n的队列存储历史记录:
- 使用标准库collections中的deque,它是一个双端循环队列
- 程序退出前,可以使用pickle将队列对象存入文件,再次运行程序时将其导入
代码如下:
# -*- coding: utf-8 -*-
import pickle
from random import randint
from collections import deque
N = randint(0, 100)
history = deque([], 5)
def guess(k):
if k == N:
print 'right'
return True
if k < N:
print '%s is less-than N' % k
else:
print '%s is greater-than N' % k
return False
while True:
try:
# 导入用户猜数字的历史记录
history = pickle.load(open('history'))
line = raw_input("please input a number: ")
except:
line = raw_input("please input a number: ")
# 判断用户输入的数据是否为数字
if line.isdigit():
k = int(line)
history.append(k)
# 将用户历史记录保存至history文件中
pickle.dump(history, open('history', 'w'))
if guess(k):
break
# 用户查看历史记录
elif line == 'history' or line == 'his?':
print list(history)