-
sysモジュールを使用する方法:
import sys print("Pythonバージョン:", sys.version)
このコードでは、sysモジュールの
version
属性を使用してPythonのバージョン情報を取得し、出力します。 -
platformモジュールを使用する方法:
import platform print("Pythonバージョン:", platform.python_version())
platformモジュールの
python_version()
関数は、Pythonのバージョン情報を返します。 -
sysconfigモジュールを使用する方法:
import sysconfig print("Pythonバージョン:", sysconfig.get_python_version())
sysconfigモジュールの
get_python_version()
関数も、Pythonのバージョン情報を取得する方法です。
これらの方法を使うと、Pythonのバージョン情報を簡単に取得できます。自分のニーズやコードの要件に合わせて、適切な方法を選択してください。