2019-11-09
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