47-列表练习:模拟栈操作
作者:
凯茜的老爸 | 来源:发表于
2018-07-31 13:52 被阅读58次stack = []
def push_it():
item = input('item to push: ')
stack.append(item)
def pop_it():
if stack:
print("from stack popped %s" % stack.pop())
def view_it():
print(stack)
def show_menu():
cmds = {'0': push_it, '1': pop_it, '2': view_it} # 将函数存入字典
prompt = """(0) push it
(1) pop it
(2) view it
(3) exit
Please input your choice(0/1/2/3): """
while True:
# input()得到字符串,用strip()去除两端空白,再取下标为0的字符
choice = input(prompt).strip()[0]
if choice not in '0123':
print('Invalid input. Try again.')
continue
if choice == '3':
break
cmds[choice]()
if __name__ == '__main__':
show_menu()
本文标题:47-列表练习:模拟栈操作
本文链接:https://www.haomeiwen.com/subject/vjxhvftx.html
网友评论