"""
Let's describe some attributes.

Attributes:
    A: Alpha.
    B (bytes): Beta.
    C: Gamma.
    D: Delta.
    E (float): Epsilon.
"""

A: int = 0
B: str = "ŧ"
C: bool = True
D = 3.0
E = None
