1、random模块(取随机数模块)
# 取随机小数 : 数学计算
import random
print(random.random())# 取0-1之间的小数
print(random.uniform(1,2))# 取1-2之间的小数
# 取随机整数 : 彩票 抽奖
import random
print(random.randint(1,2)) #头和尾都取得到
print(random.randrange(1,2)) # 取不到尾部
print(random.randrange(1,200,2)) # 按步数进行随机取数
# 从一个列表中随机抽取值 : 抽奖
l = ['a','b',(1,2),123]
print(random.choice(l))# 选择列表中一个进行随机取值,如果进行多次会取到重复的值
print(random.sample(l,2))# 选取两个值,两个值不会重复
# 打乱一个列表的顺序,在原列表的基础上直接进行修改,节省空间
l = ['a','b',(1,2),123]
random.shuffle(l)
print(l)
#验证码练习
# 4位数字验证码
import random s = ''
for i in range(4):
num = random.randint(0,9)
s += str(num)
print(s)
# 6位数字验证码
import random
def code(n = 6):
s = ''
for i in range(n):
num = random.randint(0,9)
s += str(num)
return s
print(code(6))
# 6位数字+字母验证码
import random
s = ''
for i in range(6):
num = str(random.randint(0,9))
alpha_upper = chr(random.randint(65,90))
alpha_lower = chr(random.randint(97, 122))
ret = random.choice([num,alpha_upper,alpha_lower])
s += ret
print(s)
# 函数版本
import random
def code(n = 6):
s = ''
for i in range(n):
# 生成随机的大写字母,小写字母,数字各一个
num = str(random.randint(0,9))
alpha_upper = chr(random.randint(65,90))
alpha_lower = chr(random.randint(97,122))
res = random.choice([num,alpha_upper,alpha_lower])
s += res
return s
print(code(4))
# 进阶
import random
def code(n = 6,alpha = True):
s = ''
for i in range(n):
num = str(random.randint(0,9))
if alpha:
alpha_upper = chr(random.randint(65,90))
alpha_lower = chr(random.randint(97,122))
num = random.choice([num,alpha_upper,alpha_lower])
s += num
return s
print(code(4,False))
2、time模块
# time模块主要是用来和时间打交道的
# 时间戳时间
import time
print(time.time())
# 格式化时间
print(time.strftime('%Y-%m-%d %H:%M:%S'))
print(time.strftime('%y-%m-%d %H:%M:%S'))
print(time.strftime('%c'))
# 结构化时间
struct_time = time.localtime() # 北京时间
print(struct_time)
print(struct_time.tm_mon)
# 时间戳换成字符串时间
struct_time = time.localtime(1500000000)
ret = time.strftime('%y-%m-%d %H:%M:%S',struct_time)
print(ret)
# 字符串时间 转 时间戳
struct_time = time.strptime('2018-8-8','%Y-%m-%d')
res = time.mktime(struct_time)
print(res)
1.查看一下2000000000时间戳时间表示的年月日
struct_t = time.localtime(2000000000)
print(time.strftime('%Y-%m-%d',struct_t))
2.将2008-8-8转换成时间戳时间
t = time.strptime('2008-8-8','%Y-%m-%d')
print(time.mktime(t))
3.请将当前时间的当前月1号的时间戳时间取出来 - 函数
def get_time():
st = time.localtime()
st2 = time.strptime('%s-%s-1'%(st.tm_year,st.tm_mon),'%Y-%m-%d')
return time.mktime(st2)
print(get_time())
4.计算时间差 - 函数
# 2018-8-19 22:10:8 2018-8-20 11:07:3
# 经过了多少时分秒
str_time1 = '2018-8-19 22:10:8'
str_time2 = '2018-8-20 11:07:3'
struct_t1 = time.strptime(str_time1,'%Y-%m-%d %H:%M:%S')
struct_t2 = time.strptime(str_time2,'%Y-%m-%d %H:%M:%S')
timestamp1 = time.mktime(struct_t1)
timestamp2 = time.mktime(struct_t2)
sub_time = timestamp2 - timestamp1
gm_time = time.gmtime(sub_time)
# 1970-1-1 00:00:00
print('过去了%d年%d月%d天%d小时%d分钟%d秒'%(gm_time.tm_year-1970,gm_time.tm_mon-1,
gm_time.tm_mday-1,gm_time.tm_hour,
gm_time.tm_min,gm_time.tm_sec))
3、sys模块
# sys 是和Python解释器打交道的
print(sys.argv) # argv的第一个参数 是python这个命令后面的值
#两种不同的传值
import sys
usr = input('username')
pwd = input('password')
usr = sys.argv[1]
pwd = sys.argv[2]
if usr == 'alex' and pwd == 'alex3714':
print('登录成功')
else:
exit()
# 是我们导入到内存中的所有模块的名字 : 这个模块的内存地址
import re
print(sys.modules['re'].findall('\d','abc126'))
4、os模块
# os是和操作系统交互的模块
os.makedirs('dir1/dir2')
os.mkdir('dir3') # 只能创建一个
os.mkdir('dir3/dir4') #只有3存在才能创建4 # 只能删空文件夹
os.rmdir('dir3/dir4')
os.removedirs('dir3/dir4')
os.removedirs('dir1/dir2')
# exec/eval执行的是字符串数据类型的 python代码
# os.system和 os.popen是执行字符串数据类型的 命令行代码
os.'system('dir') # 执行操作系统的命令,没有返回值,实际的操作/删除一个文件 创建一个文件夹 exec
ret = os.popen('dir) # 是和做查看类的操作
s =ret.read()
print(s)
# os.listdir()列举目录下的所有文件。返回的是列表类型。
file_lst = os.listdir('D:\sylar\s15')
for path in file_lst:
print(os.path.join('D:\sylar\s15',path))
#os.path.join()将path进行组合,若其中有绝对路径,则之前的path将被删除。
path = os.path.join('D:\\pythontest\\b', 'D:\\pythontest\\a')
print(path)
#输出D:\pythontest\a
# os.getcwd() # 查看当前工作目录
os.chdir('D:\sylar\s15\day18') # 切换当前的工作目录
ret = os.popen('dir') # 是和做查看类的操作
s =ret.read()
print(s)
# os.path.abspath()
#把路径中不符合规范的/改成操作系统默认的格式
path = os.path.abspath('D:/sylar/s15/day19/4.os模块.py')
print(path)
#能够给能找到的相对路径改成绝对路径
path = os.path.abspath('4.os模块.py')
print(path)
#os.path.split() 就是把一个路径分成两段,第二段是一个文件/文件夹
path= os.path.split('D:/sylar/s15/day19/4.os模块.py')
print(path)
#输出('D:/sylar/s15/day19', '4.os模块.py')
path= os.path.split('D:/sylar/s15/day19')
print(path)
#输出('D:/sylar/s15', 'day19')
path= os.path.split('D:/sylar/s15/day19/')
print(path)
#输出('D:/sylar/s15/day19', '')
#os.path.dirname / os.path.basename
ret1 = os.path.dirname('D:/sylar/s15/day19/4.os模块.py')
ret2 = os.path.basename('D:/sylar/s15/day19/4.os模块.py')
print(ret1) #D:/sylar/s15/day19
print(ret2) #4.os模块.py
#os.path.exists() 判断文件/文件夹是否存在
res = os.path.exists(r'D:\sylar\s15\day19\4.os模块.py')
print(res)
#其他用法
os.path.exists(path) 如果path存在,返回True;如果path不存在,返回False
os.path.isabs(path) 如果path是绝对路径,返回True
os.path.isfile(path) 如果path是一个存在的文件,返回True。否则返回False
os.path.isdir(path) 如果path是一个存在的目录,则返回True。否则返回False
os.path.join(path1[, path2[, ...]]) 将多个路径组合后返回,第一个绝对路径之前的参数将被忽略
os.path.getatime(path) 返回path所指向的文件或者目录的最后访问时间
os.path.getmtime(path) 返回path所指向的文件或者目录的最后修改时间
os.path.getsize(path) 返回path的大小