Quick actions

cmd+k|ctrl+k

Navigation

Languages

20240408 print quot block + new line

Snippet info

Language

Python

Visibility

public

Author

hkchun

Created

2024-04-08T02:42:47.208482Z

Updated

2024-04-08T02:42:47.208482Z

if 1==1:    print("1 equals 1")
    
if 1==2:    print("python is worng")
print("888this code is executed no matter what")
a=[1,
2,
3]


a=11
if a>5 and a<10 and a \
>5:
    print("hello")
INFO