Python Application does nothing

后端 未结 3 1913
野性不改
野性不改 2021-01-29 16:37

This code stopped doing anything at all after I changed something that I no longer remember

#Dash Shell
import os
import datetime

class LocalComputer:
    pass
         


        
3条回答
  •  不思量自难忘°
    2021-01-29 16:56

    It's doing nothing because there's no code to make it do anything. Try inserting a line like

    print("You entered:", userinput)
    

    at an appropriate place in your loop.

提交回复
热议问题