Pythonでバージョンを取得する方法


  1. sysモジュールを使用する方法:

    import sys
    print("Pythonバージョン:", sys.version)

    このコードでは、sysモジュールのversion属性を使用してPythonのバージョン情報を取得し、出力します。

  2. platformモジュールを使用する方法:

    import platform
    print("Pythonバージョン:", platform.python_version())

    platformモジュールのpython_version()関数は、Pythonのバージョン情報を返します。

  3. sysconfigモジュールを使用する方法:

    import sysconfig
    print("Pythonバージョン:", sysconfig.get_python_version())

    sysconfigモジュールのget_python_version()関数も、Pythonのバージョン情報を取得する方法です。

これらの方法を使うと、Pythonのバージョン情報を簡単に取得できます。自分のニーズやコードの要件に合わせて、適切な方法を選択してください。