지난 2021년 12월 6일에 Python 3.10.1 이 출시되었다. 설치하자 마자 인터프리터 쉘로 간단히 테스트해 보았다. Python 3.10.1 (tags/v3.10.1:2cd268a, Dec 6 2021, 19:10:37) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> print("Hello~") Hello~ >>> for i in range(11): ... print(2**i) ... 1 2 4 8 16 32 64 128 256 512 1024 >>> import math >>> math.factorial(10) 3628800 >>> math..