import this
파이썬에 대한 철학을 적어놓았다.
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
파이썬 기본 인코딩
기본적으로 입력 출력 모두 utf-8 을 따른다.
# 확인 방법
import sys
print(sys.stdin.encoding)
print(sys.stdout.encoding)