15 July 2026
Manush ............."text not yet in the index
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
16 July 2026
id 7660224880What python version is best for a windows 8.1 with 1gb ram and 24gb left storage?
Python 3.11 is the last one to offer support for win 8
Hydro ツPy2 used less () syntax??
Not really
It was just that print was an operator in py2
In py3 its a function
razorblade23Python 3.11 is the last one to offer support for win 8
I thought Python 3.11 requires Win10 or later
Craig R MortonI thought Python 3.11 requires Win10 or later
https://docs.python.org/3.11/using/windows.html
As specified in PEP 11, a Python release only supports a Windows platform while Microsoft considers the platform under extended support. This means that Python 3.11 supports Windows 8.1 and newer.