import uuid import base64 # uuid4()生成32位的随机加密串 uuid_str = str(uuid.uuid4()).encode("utf-8") print(uuid_str) # 使用base64加密 result ...
確定! 回上一頁