## 简易数字小游戏
import random
import time
##数据
# 随机抽取数字
note = '0123456789'
# 记录输入时间
game_record = []
## 操作数据
while True:
user_input_change = input('请输入g开始游戏:')
if user_input_change == 'g':
key_list = random.sample(note, 8)
key_str = ''.join(key_list)
start_time = time.perf_counter()#
user_input_str = input(key_str + '\n' )
end_time = time.perf_counter()
mean_time = round((end_time - start_time) / 8, 2)
if key_str == user_input_str:
game_record.append(mean_time)
print('输入正确,平均输入每数字耗时', mean_time,'秒!')
print('最快的输入记录为:',min(game_record),'秒!')
else:
print('输入有误,正确输入为:', key_str)
Python简易数字小游戏
最新推荐文章于 2024-11-08 13:43:44 发布