python 实现用户的历史记录功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 实现用户的历史记录功能相关的知识,希望对你有一定的参考价值。

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:
  line = input("Please input a number: ")
  if line.isdigit():
    k = int(line)
    history.append(k)
    if guess(k):
      break
  elif: line == 'history' or line == 'h?':
      print(list(history))
      

以上是关于python 实现用户的历史记录功能的主要内容,如果未能解决你的问题,请参考以下文章

问题7:如何实现用户的历史记录功能(最多n条)

用队列实现用户的历史记录功能(最多n条)?

使用localStorage实现历史记录搜索功能

如何实现用户的历史记录功能(最多n条)

python实现购物车程序

ASP.NET SignalR 与LayIM配合,轻松实现网站客服聊天室 补充:历史记录 和 消息提醒