📜  python 生成 uid - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:43.175000             🧑  作者: Mango

代码示例1
# Python3 code to generate the 
# random id using uuid1() 
  
import uuid 
  
# Printing random id using uuid1() 
print ("The random id using uuid1() is : ",end="") 
print (uuid.uuid1())