Re: [Tutor] SyntaxError: unexpected EOF while parsing

2015-08-18 Thread Alan Gauld
On 18/08/15 03:23, Nym City via Tutor wrote: I would like to know what is the reason and proper solution for the following error: SyntaxError: unexpected EOF while parsing. The reason is that the parser reached the end of the file while still trying to parse a Python statement. Usually

[Tutor] SyntaxError: unexpected EOF while parsing

2015-08-18 Thread Nym City via Tutor
Hello, I would like to know what is the reason and proper solution for the following error: SyntaxError: unexpected EOF while parsing. I am get this error usually when I am troubleshooting and comment out portion of the code and add Print() statements to see where the issues are in my code.