python

怎么查看Python版本信息

小亿
173
2024-03-05 09:46:08
栏目: 编程语言

您可以在 Python 环境中使用以下方式来查看 Python 的版本信息:

1. 在命令行中输入以下命令:

```bash

python --version

```

2. 在交互式 Python shell 中运行以下代码:

```python

import sys

print(sys.version)

```

这两种方法都可以让您快速查看当前 Python 解释器的版本信息。

0
看了该问题的人还看了