python模块之random

程序中有很多地方需要用到随机字符,比如登录网站的随机验证码,通过random模块可以很容易生成随机字符串

 

import random

# 取随机数

print(random.randint(1, 100))  # 从1到1000之间取一个随机数,数字自定义
print(random.randrange(1, 100))  # 和ranint的区别是这个不包含100,ranint包含

# 随机浮点数
print(random.random())  # 0.5214745826531983

# 返回一个指定数据结构的随机字符。做随机验证码的时候用得到

print(random.choice('asdasd!()&&^%&%$jakshds12313'))  # &

print(random.sample('asdasd!()&&^%&%$jakshds12313', 3))  # 返回多个,以列表的形式返回  ['a', '%', '&']

# 可以用string找生成随机验证码的数据源

import string

print(string.digits)  # 0123456789
print(string.ascii_lowercase)  # abcdefghijklmnopqrstuvwxyz
print(string.punctuation)  # !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~

s = string.ascii_lowercase + string.digits
check_code = ''.join(random.sample(s, 5))
print(check_code)  # g7fuw

# 洗牌

d = list(range(100))
random.shuffle(d)
print(d)  # 乱序了

 

转载于:https://www.cnblogs.com/lshedward/p/9996754.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值