Page 1 of 1

Name Error

Posted: Thu Mar 27, 2014 5:44 pm
by meddyliol
I have just put the following into Idle 3: Print("Hello World") saved it then did Run Module. The following error keeps coming back: Name error: Name "Print" is not defined. What am I doing wrong?

Re: Name Error

Posted: Thu Mar 27, 2014 5:52 pm
by croston
Python is the case sensitive. 'Print' should have a lower case 'p'.

Re: Name Error

Posted: Thu Mar 27, 2014 6:43 pm
by meddyliol
Thanks for that. It now works (what a surprise). :)