print in Python 2 as if it was Python 3
❮ print in Python 3 Exception: SyntaxError: Missing parentheses in call ❯
examples/basics/print3_in2.py
from __future__ import print_function print("hello", end="") print("world")
helloworld