6 lines
116 B
Python
6 lines
116 B
Python
# 构建文件
|
|
|
|
# 确定系统和架构
|
|
import platform
|
|
os_name = platform.system()
|
|
print(" 系统名称:", os_name) |