Python Forum
First time coding need a little help - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: First time coding need a little help (/thread-24871.html)



First time coding need a little help - Noah - Mar-08-2020

When i enter some python and i want to go on an another line i have to press enter which also then just makes the program try and run and come up with syntax errors and i have to type it all out again. Little help


RE: First time coding need a little help - buran - Mar-08-2020

It sounds like you are in interactive mode. Better write code in a file (save it with py extension) and then execute it

check https://python-forum.io/Thread-How-to-Execute-python-code how to execute python code