Python.display.Code example
Example 1: how to print hello in python
#python2
print 'hello'
#python3
print('hello')
Example 2: print hello world in python
# This program prints Hello, world!
print('Hello, world!')
#python2
print 'hello'
#python3
print('hello')
# This program prints Hello, world!
print('Hello, world!')