Is the Synatx for : println("Hello, world!') correct? code example
Example: how to print hello world in python
# For python 3
print("Hello World")
# for python 2
print "Hello World"
# For python 3
print("Hello World")
# for python 2
print "Hello World"