+ 1
why is it that print("hello world") do not work while am praticing
8 odpowiedzi
+ 2
check your python version simply by using these two lines
import std
print (sys.version_info)
Output should be like this
minor = 3, major =5 .......
+ 1
print("Hello world")
0
Do you write print before that?
0
yes I do
0
Try to put apostrophes instead of quotes
0
And maybe a space between print and the rest
0
Check which version of Python is installed on your system.
Python3.X
print("Hi")
Python2.X
print "Hi"
- 1
"hello" but with capital H....try it