Quick actions

cmd+k|ctrl+k

Navigation

Languages

2019-11-09

Snippet info

Language

Python

Visibility

public

Author

kkanghj6514

Created

2019-11-09T04:01:04Z

Updated

2019-11-09T04:01:04Z

name = "JinKyoung"
address = '서울시 강남구'
print(name,address)
text = '''이'''
print(text)

#a = 1+2+3+
#print(4+5)\

a1 = 1+2+3+\
4+5
print(a1)

print("Hello\nWorld")
hello_str = "Hello\nWorld"
print(hello_str)
print("Hello\tWorld")

INFO