0
I write the python on IDLE like this (testing) >> a =("Hello World") >> print(a) i save it with ".py" why not work?
Syntax Error
5 Réponses
+ 13
You have to open a new file and save it with the .py extension, then run it on the IDLE.
Naturally in the file you should not insert the ">>" to prevent syntax errors. :)
a = "Hello World"
print(a)
+ 11
@Duta sure, you can also read a .py file via cmd/terminal. ;)
+ 9
don't use >>
+ 1
@Maz it's can't open via CMD?
+ 1
thanks @maz you're like my teacher :D