sys 获取程序参数、版本信息、模块搜索路径、标准输入输出等
os 操作文件,环境变量, os.patch路径信息处理
1、sys
>>> dir(sys)
['__displayhook__', '__doc__', '__excepthook__', '__interactivehook__', '__loader__', '__name__', '__package__', '__spec__', '__stderr__', '__stdin__', '__stdout__', '_clear_type_cache', '_current_frames', '_debugmallocstats', '_getframe', '_home', '_mercurial', '_xoptions', 'abiflags', 'api_version', 'argv', 'base_exec_prefix', 'base_prefix', 'builtin_module_names', 'byteorder', 'call_tracing', 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info', 'excepthook', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info', 'float_repr_style', 'get_coroutine_wrapper', 'getallocatedblocks', 'getcheckinterval', 'getdefaultencoding', 'getdlopenflags', 'getfilesystemencoding', 'getprofile', 'getrecursionlimit', 'getrefcount', 'getsizeof', 'getswitchinterval', 'gettrace', 'hash_info', 'hexversion', 'implementation', 'int_info', 'intern', 'is_finalizing', 'last_traceback', 'last_type', 'last_value', 'maxsize', 'maxunicode', 'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_cache', 'platform', 'prefix', 'ps1', 'ps2', 'set_coroutine_wrapper', 'setcheckinterval', 'setdlopenflags', 'setprofile', 'setrecursionlimit', 'setswitchinterval', 'settrace', 'stderr', 'stdin', 'stdout', 'thread_info', 'version', 'version_info', 'warnoptions']
sys.argv
获取命令行参数,list对象
import sys
print('len = ', len(sys.argv), 'argvs: ', sys.argv)
$ python3 mypython.py 1 2 3
len = 4 argvs: ['mypython.py', '1', '2', '3']
sys.exit(n)
对出程序
>>> sys.exit(2)
$
>>> sys.version
'3.5.2 (default, Apr 16 2020, 17:47:17) \n[GCC 5.4.0 20160609]'
>>> sys.maxsize #获取最大的Int值
9223372036854775807
>>> sys.path #返回模块的搜索路径,append
['', '/usr/lib/python35.zip'<