Program Python Hello World
def helloworld():
print("Hello World")
helloworld()
Enthusiastic Eland
def helloworld():
print("Hello World")
helloworld()
print("Hello world") # print "Hello world" to console
print("Hello World!")
print('Hello World!')
# Both couple of single quotes or couple of double quotes will do the work
# But it will give a "SyntaxError" massage if you mix them
# Output -
# Hello World!
# Hello World!
print("Hello World") #it is vary easy to print anything using print() statement
print("Hello, World!")
print('Hello World!')