Quick actions

cmd+k|ctrl+k

Navigation

Languages

2019-11-09

Snippet info

Language

Python

Visibility

public

Author

seounghyukp

Created

2019-11-09T03:56:37Z

Updated

2019-11-16T03:49:34Z

name = "Jinkyoung"
address = '서울시 강남구'
print(name, address)


text = '''이렇게 작성하면 줄 바꿈도 그대로 적용해서 열여러 줄의 문자를 작성할 수 있습니다.'''
print(text)
print("Hello/nWorld")


hello_str = "Hello/nworld"
hello_str
print(hello_str)
print("Hello\tWorld")
print("HelloWorld\rNice")
print("Hello\0World")
print("Hello\'World")
print("Hello\"World")
"Hello"+"World"
"Hello" "World"
INFO