python
python 2 code to python 3
migration
$ 2to3 example.py$ 2to3 -w example.pyprint to print function
print "hello world"print("hello world")except
Last updated
$ 2to3 example.py$ 2to3 -w example.pyprint "hello world"print("hello world")Last updated