码迷,mamicode.com
首页 > 编程语言 > 详细

python学习之-- 生成唯一ID

时间:2018-08-31 15:53:28      阅读:422      评论:0      收藏:0      [点我收藏+]

标签:hex   encoding   import   ret   enc   upd   time   return   生成   

以下以2种方法生成唯一ID

def uuid_method():
    """第一种方法"""
    import uuid
    return str(uuid.uuid1())

print(uuid_method())

  

def time_method():
    """第二种方法"""
    import time, hashlib
    m = hashlib.md5()
    m.update(bytes(str(time.time()), encoding=‘utf-8‘))
    return m.hexdigest()

print(time_method())

  

python学习之-- 生成唯一ID

标签:hex   encoding   import   ret   enc   upd   time   return   生成   

原文地址:https://www.cnblogs.com/zy6103/p/9565836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!