2021년 부터는 Python3가 main stream으로 자리를 잡아가고 있다.
In [1]: 1+2 Out[1]: 3 In [2]: _ Out[2]: 3
f-string
test = 4 print(f'{test=}') test = 4