Re: [Tutor] problem with code

2015-09-01 Thread Alan Gauld
On 01/09/15 14:07, Nathan Clark wrote: I have written another basic program out of python, please could you instruct me on how to fix it question= input("What is your question) print("Let me think about that") time.sleep(10) #10 seconds wait print (question) print ("lol")

Re: [Tutor] problem with code

2015-09-01 Thread Steven D'Aprano
On Tue, Sep 01, 2015 at 02:07:51PM +0100, Nathan Clark wrote: > I have written another basic program out of python, please could you > instruct me on how to fix it I assume you are using Python 3, is that correct? > question= input("What is your question) > print("Let me think about that")

Re: [Tutor] problem with code

2015-09-01 Thread Nathan Clark
I have written another basic program out of python, please could you instruct me on how to fix it question= input("What is your question) print("Let me think about that") time.sleep(10) #10 seconds wait print (question) print ("lol") On Thu, Aug 20, 2015 at 4:08 PM, Job wrote: