[python随机密码生成] 使用python进行随机秘钥生成 #python随机密码
import os os.urandom(16)
import secrets secrets.token_urlsafe(16)
import uuid uuid.uuid4().hex