How to print without a newline or space

Consider these examples using print in Python: >>> for i in range(4): print('.') . . . . >>> print('.', '.', '.', '.') . . . . Either a newline or a space is added between each v...