📜  python print os 平台 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:25.133000             🧑  作者: Mango

代码示例1
import platform
print(platform.system(), platform.release())


import os
print(os.name)


import sys
print(sys.platform)

# These are the 3 ways to print the platform.