python 버전 확인 방법.


파이썬 버전을 확인하는 방법. –version 옵션으로 버전을 확인할 수 있습니다.

$ python --version
Python 3.8.10

3.8.10임을 확인할 수 있습니다.

–version의 줄임말인 -V 옵션을 사용할 수도 있습니다.

$ python -V
Python 3.8.10

–help 옵션을 사용하면 -V(또는 –version)를 통해 Python 버전을 확인할 수 있습니다.

$ python --help
usage: /Users/junho85/.pyenv/versions/3.8.10/bin/python (option) ... (-c cmd | -m mod | file | -) (arg) ...
Options and arguments (and corresponding environment variables):
...
-V     : print the Python version number and exit (also --version)
         when given twice, print more information about the build
...

V를 두 번 사용하면 더 많은 빌드 정보를 얻을 수 있습니다.

$ python -VV
Python 3.8.10 (default, Oct 14 2022, 11:25:08)
(Clang 14.0.0 (clang-1400.0.29.102))

2022년 10월 14일 11시 25분 08초에 지어졌을 것입니다.

Clang 14.0.0을 사용하고 있다고 합니다.