使用 UUID 在 Python 中创建唯一用户 ID 的最佳方法是什么?
What is the best way to create a unique user ID in Python, using UUID?
我会选择 uuid
from uuid import uuid4 def new_user_id(): return uuid4().hex
I'd go with uuid
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
我会选择 uuid
I'd go with uuid