您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

uuid_utils.py 156B

123456789
  1. import uuid
  2. def is_valid_uuid(uuid_str: str) -> bool:
  3. try:
  4. uuid.UUID(uuid_str)
  5. return True
  6. except Exception:
  7. return False