helloe world python code example
Example 1: how to print hello in python
#python2
print 'hello'
#python3
print('hello')
Example 2: python how to say hello world
my_string = "Hello, World!"
print(my_string)
#python2
print 'hello'
#python3
print('hello')
my_string = "Hello, World!"
print(my_string)