摘要:
import sys print(sys.path) # 接收命令行列表参数 print(sys.version) # 获取解析器版本信息 print(sys.maxsize) # 最大的int值 print(sys.path) # 返回模块的搜索路径,初始化时使用pythonpath环境变量 print(sys.platform) # 返回操作平台名称 print(sys.stdo... 阅读全文
摘要:
import os cwd = os.getcwd() # 返回os模块.py的路径 print(cwd) lst = os.listdir() # 当前目录列表 print(lst) # os.system('cmd') # 运行系统cmd命令 genv = os.getenv('path') # 获取当前系统的环境变量 print(genv) #获取系统所有环境变量——返回字典 e... 阅读全文
摘要:
import random print(random.randint(1, 3)) # 不包含100 print(random.randrange(1, 3)) # 包含100 print(random.random()) # 随机浮点 print(random.choice('asdf@3#$%^')) # 返回1个随机字符串 print(random.sample('asdf@3#... 阅读全文
摘要:
一、time模块 在Python中,通常有这几种方式来表示时间: 1.时间戳——一串数字(计算机认识) 2.时间字符串 ——t=‘2018-3-28’ 3.结构化时间对象——time.struct_time %y 两位数的年份表示(00-99) %Y 四位数的年份表示(000-9999) %m 月份 阅读全文