python-tips-and-tricks icon indicating copy to clipboard operation
python-tips-and-tricks copied to clipboard

A collection of Python tips and tricks

Table of Contents

  • IntFlag Enum in Python
  • Python 3.10 Union Types
  • Property Validation in Python
  • Readonly Attributes in Python
  • Sorting by Enum Values in Python
  • Enum Names and Values in Python
  • Python List Slicing Cheat Sheet
  • Unpacking Tuples in Python
  • Custom Properties in Django
  • Displaying Many to Many Fields in Django
  • Inline Text Choices in Django
  • Decorators in Python
  • Implementing Range in Python

IntFlag Enum in Python

Source Code

Python 3.10 Union Types

Source Code

Property Validation in Python

Source Code

Readonly Attributes in Python

Source Code

Sorting by Enum Values in Python

Source Code

Enum Names and Values in Python

Source Code

Python List Slicing Cheat Sheet

Source Code

Unpacking Tuples in Python

Source Code

Custom Properties in Django

Source Code

Displaying Many to Many Fields in Django

Source Code

Inline Text Choices in Django

Source Code

Decorators in Python

Implementing Range in Python