会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
胸毛少女
博客园
首页
新随笔
联系
管理
订阅
2019年5月15日
#在26个大小写字母(52个),以及9个数字组成的字符列表中,随机生成10个8位密码
摘要: print(ord('A')) print(ord('a')) print(ord('0')) import random SecChar=[] for i in range(26): SecChar.append(chr(i+ord('A'))); for i in range(26): SecChar.append(chr(i+ord('a'))); fo...
阅读全文
posted @ 2019-05-15 11:39 胸毛少女
阅读(294)
评论(0)
推荐(0)
编辑
公告