print without parenthesis code example
Example: print without parenthesis
#not possible in python 3, but:
>>> p = print
>>> p('hello')
hello
#works to save time
#not possible in python 3, but:
>>> p = print
>>> p('hello')
hello
#works to save time