望舒朝晖 发表于 2020-10-3 16:39:26

While 循环何时退出

prompt="\nTell me something,and I will repeat it back to you: "
prompt+="\nEnter 'quit' to end the program."
message=""
while message!='quit':
    message=input(prompt)
    print(message)


为啥Jupyter 在运行这个程序的时候 没有反应

望舒朝晖 发表于 2020-10-3 16:41:44

并且In变成了In[*]
页: [1]
查看完整版本: While 循环何时退出