Constants
Commonly used constants.
ZERO: Literal[0] = 0
module-attribute
Zero (0
) literal.
ONE: Literal[1] = 1
module-attribute
One (1
) literal.
NEGATIVE_ONE: Literal[-1] = -1
module-attribute
Negative one (-1
) literal.
EMPTY = str()
module-attribute
The empty string.
NEW_LINE = '\n'
module-attribute
One new line character.
DOUBLE_NEW_LINE = NEW_LINE + NEW_LINE
module-attribute
Two new line characters.