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

1234567891011
  1. import uuid
  2. def is_valid_uuid(uuid_str: str | None) -> bool:
  3. if uuid_str is None or len(uuid_str) == 0:
  4. return False
  5. try:
  6. uuid.UUID(uuid_str)
  7. return True
  8. except Exception:
  9. return False