Replace prints to match how python 3 works, such as: ```python print "Hello", world ``` by: ```python print("Hello {0}".format(world)) ```