5 个常用 Python 标准库

本文介绍了Python中五个常用的内置库:sys用于获取程序信息和管理输入输出,os提供文件操作和环境变量管理,time模块处理时间相关功能,random模块用于生成随机数,而re模块则涉及正则表达式的匹配和搜索。通过这些库,开发者可以更高效地进行Python编程。
摘要由CSDN通过智能技术生成

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'<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值