So, beginners: Please use print() instead of print, to save you some hazzle when using python3 :)
Python3:
>>> print("hello", "world") hello world
>>> print("hello", "world") ('hello', 'world')