python学习之-- 生成唯一ID
2021-07-09 14:07
标签:hex encoding import ret enc upd time return 生成 以下以2种方法生成唯一ID python学习之-- 生成唯一ID 标签:hex encoding import ret enc upd time return 生成 原文地址:https://www.cnblogs.com/zy6103/p/9565836.htmldef 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
文章链接:http://soscw.com/index.php/essay/102819.html