美文网首页
Python根据时间戳生成位随机数

Python根据时间戳生成位随机数

作者: yytester | 来源:发表于2017-12-15 15:23 被阅读95次
#!/usr/bin/python

#-*-coding:utf-8-*-  
import datetime;  
import random;  

for i in range (0,10):  
    nowTime=datetime.datetime.now().strftime("%Y%m%d%H%M%S");
    randomNum=random.randint(0,99);
    if randomNum<=10:  
        randomNum=str(0)+str(randomNum);  
    uniqueNum=str(nowTime)+str(randomNum);  
    print uniqueNum; 

输出:


image.png

相关文章

网友评论

      本文标题:Python根据时间戳生成位随机数

      本文链接:https://www.haomeiwen.com/subject/pcrdwxtx.html