python 2 to 3 converter code example
Example: convert python 2 to 3
# Example Python 2 code
def greet(name):
print "Hello, {0}!".format(name)
print "What's your name?"
name = raw_input()
greet(name)
# Invoke 2to3 on the command line.
2to3 example.py
# Docs for the module available at https://docs.python.org/3/library/2to3.html#module-lib2to3