All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 19:58, 16 September 2025 Kenneth talk contribs created page Python/enum (Created page with "== enum — Support for enumerations == Python 3: enum — Support for enumerations https://docs.python.org/3/library/enum.html <pre> from enum import Enum # class syntax class Color(Enum): RED = 1 GREEN = 2 BLUE = 3 # functional syntax Color = Enum('Color', ['RED', 'GREEN', 'BLUE']) </pre> Convert string name or value to enum: <pre> def value_to_enum(color_value_str): try: return Color(color_value_str) except ValueError: retu...")