python 模块 sys
import sys
sys.argv # 参数,第一个参数是脚本的文件明,自定义参数为数组的第二个 sys.argv[1]
sys.version # python的版本
sys.path # 返回模块路径
sys.exit(n) # 退出程序,返回n
sys.platform #返回系统的名称
sys.stdout.write(r‘please‘) # 系统标准输出
原文地址:https://www.cnblogs.com/kuku0223/p/8965245.html
时间: 2024-10-12 07:35:02