-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy py.py
38 lines (38 loc) · 799 Bytes
/
easy py.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Python 3.9.2 (v3.9.2:1a79785e3e, Feb 19 2021, 09:06:10)
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license()" for more information.
>>> print ('hello')
hello
>>> print("hello")
hello
>>> print(''' hello
hello
world''')
hello
hello
world
>>>
================================ RESTART: Shell ================================
>>> print('\'hello\'')
'hello'
>>> print('\\hello\\')
\hello\
>>>
================================ RESTART: Shell ================================
>>> print('abc\nxyz')
abc
xyz
>>> print('hello\nIm\npython\nand\nim\nhappy')
hello
Im
python
and
im
happy
>>>
================================ RESTART: Shell ================================
>>> print('abc\txyz')
abc xyz
>>> print('hello\tIm\tKamado\tTanjiro')
hello Im Kamado Tanjiro
>>>