博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 随机数、MD5加密及yield
阅读量:5089 次
发布时间:2019-06-13

本文共 841 字,大约阅读时间需要 2 分钟。

# 随机数  生成验证码

import random
# print random.random()
# print random.randint(1, 5)
# print random.randrange(1, 5)
# temp = random.randint(65, 90)
# print chr(temp)
myList = []
for i in range(6):
i = random.randint(1, 3)
# print i
if i == 1:
temp = str(random.randint(1, 9))
myList.append(temp)
elif i == 2:
temp = random.randint(97, 122)
myList.append(chr(temp))
else:
temp = random.randint(65, 90)
myList.append(chr(temp))
print ''.join(myList)
# md5加密
import hashlib
myHash = hashlib.md5()
myHash.update('admin')
print myHash.hexdigest()

#yield 用法

def AlexReadlines():

seek = 0
while True:
with open('C:\Users\dendei\Desktop\share\lock.txt','r') as f:
f.seek(seek)
data = f.readline()
if data:
seek = f.tell()
yield data
else:
return
#re = AlexReadlines()
for item in AlexReadlines():
print item

转载于:https://www.cnblogs.com/3one/p/5543140.html

你可能感兴趣的文章
两种最常用的Sticky footer布局方式
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Java程序IP v6与IP v4的设置
查看>>
RUP(Rational Unified Process),统一软件开发过程
查看>>
数据库链路创建方法
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
jQuery如何获得select选中的值?input单选radio选中的值
查看>>
设计模式 之 享元模式
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
15 FFT及其框图实现
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>