sm535
0
Q:

how to print hello in python

print("Hello World!")
20
#python2 
print 'hello'
#python3
print('hello')
6
print("hello world")
0
#Look at these ones, they are all right
print("Hello World")
#for python 2:
print "Hello World"
3
# This program prints Hello, world!

print('Hello, world!')
0
print('Hello World')
0
print("Hello World")
print "Hello World"
0
message = "Hello World"
print(f"{message}")
0
# For python 3
print("Hello World")
# for python 2
print "Hello World"
0

New to Communities?

Join the community