我正在使用 Python 2.6,我想知道如何使用控制台中的向上键。我现在不想使用 Tkinter 或其他 GUI 库。
下面是我的代码。
history=[]
while(1):
try:
cmd = self.get_cmd()
history.append(cmd) # append user command
# if i press UP key, just display history.
# i'll you for statement to disaply history.
print "%s" %history