标签: python python-3.x
我想将我的python脚本的结尾设置为要求输入5秒钟,然后打印是否未设置任何内容。
我尝试研究pygame库和其他各种模块,但似乎没有任何作用或与3.x兼容。
thank = "" thank = input() time.sleep(5) if thank == "": print("What, you aren't even going to say 'thank you'? So rude.") else: print("You are welcome")