6 lines
141 B
Python
6 lines
141 B
Python
>>> print('hello\tgoodbye')
|
|
>>> print('hello\ngoodbye')
|
|
>>> print("hello\tgoodbye")
|
|
>>> print("hello\ngoodbye")
|
|
>>> print(r"hello\ngoodbye")
|