from uuid import uuid4

for i in range(100):
    uid = str(uuid4())
    suid = ''.join(uid.split('-'))
    print(suid)

Python生成通用唯一识别码UUID

相关文章: