python

python cmd命令行如何查看系统信息

小樊
81
2024-12-11 12:12:18
栏目: 编程语言

在Python中,你可以使用platform模块来获取系统信息。以下是一些示例代码,展示了如何使用platform模块来查看操作系统、系统架构、Python版本等信息:

import platform

# 获取操作系统名称
print("Operating System:", platform.system())

# 获取系统架构
print("System Architecture:", platform.machine())

# 获取Python解释器名称和版本
print("Python Executable:", platform.python_executable())
print("Python Version:", platform.python_version())

# 获取系统详细信息
print("System Info:", platform.platform())

运行这段代码,你将在命令行中看到类似以下的输出:

Operating System: Windows
System Architecture: AMD64
Python Executable: C:\Python39\python.exe
Python Version: 3.9.7
System Info: Windows-10-10.0.19041-SP0

请注意,platform模块提供的信息可能因操作系统和Python版本的不同而有所差异。

0
看了该问题的人还看了