• print
>>> for i in range(3):
        print(i, end="") # Python 3.x only.
012