자바스크립트와 다르게 파이썬은 앞에 선언자 없이 간단하게 표현할 수 있다
변수명 = 변수(문자, 숫자 등 ...)
# 변수만들기
str = "hello python"
print(str) #hello python
print(type(str)) # <class 'str'>
num = 10
print(type(num)) # <class 'int'>
#문자 "", '', ''' ''', """ """
str2 = """안녕하세요
안녕하세요
안녕하세요"""
str3 = "안녕하세요 \"안녕하세요 \" 안녕하세요" """ 이스케이프 문자/코드 """
print(str2) #안녕하세요
#안녕하세요
#안녕하세요
print(str3) #안녕하세요 "안녕하세요 " 안녕하세요 이스케이프 문자/코드
#주석 내용***여러문장 주석내용***