Python2————————→Python3
print————————→print()
dict.iteritems()————————→dict.items()
reload()————————→imp.reload()
dict.keys()[index]————————→list(dict.keys())[index]
urllib.urlopen()————————→urllib.request.urlopen()
urllib.urlencode()————————→urllib.request.urlencode()
import Tkinter————————→import tkinter
if dict.has_key(key)————————→if key in dict
print >> sys.stderr, "xxxxx"————————→print("xxxxx", file = sys.stderr)