15 July 2026
Manush ............."can anyone tell me how to deal with syntax forgoting anxiety
as i going forward i facing complex code to remember
Manush ............."can anyone tell me how to deal with syntax forgoting anxiety
this won't happen when u will have done enough practice
Hydro ツthis won't happen when u will have done enough practice
I am doing i typed every code i am learning learn the logic and then i delete that code and try to type it again as i say i understand the logic of the code but even after that i got blank what to type or forgot whole concept
Manush ............."i'll try to chat with ai a lot about learning and i found two answer over and over first that i dont have to remember every line of code and second i have to learn architecture
architecture is an advanced concept of program... is how the the program works using your files structure and classes
Manush ............."i'll try to chat with ai a lot about learning and i found two answer over and over first that i dont have to remember every line of code and second i have to learn architecture
of course, is what i said you: u don't have to learn each instruction, u have to learn the language keywords work and the algorithm procedure, then the code u need to make the algorithm should be clear for u
Hydro ツthe problem:
by the user input u have to say him if the received number is even or odd
how do u make it?
i am making Alien game by eric book the python crash course i'll read his code and know what to do and then i typed that in my editor with some edits by me not of code but apereance of my game
Manush ............."can anyone tell me how to deal with syntax forgoting anxiety
Just run the code and you'll see if the syntax is correct. Python won't execute anything if the syntax is wrong.
id 6486295080Guys, why are the textbook exercises so much easier than any real-world problem? They're trivial.
To not destroy your motivation before you've gotten a chance to learn something.
id 7660224880I have a question
Does python 3.8.10 use print "test" or print("test") ?
print "text" is a py2 syntax
print("text") is a py3 syntax
To answer your question
All python 3 (including your specified version) use print("text") syntax