Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们必须使用 Python 为大学单元制作一个程序,而我正在制作一个可以在 Twitter 上使用的程序。我已经完成了发布推文和查看它们的脚本,但我想这样做,以便您可以从某种菜单脚本中选择不同的选项并从那里运行脚本?
例子:
选择一个:1
输入推文:
那种东西……真的是糊涂了!
如果要显示这样的文本菜单,请使用以下内容(如果使用 Python 3):
while True: print("1. New tweet") print("2. View tweets") option = input("Choose one: ") if option == "1": # New tweet elif option == "2": # View tweets