Typing with `|` instead of `Union`/`Optional`
-
int | str
is the shorthand ofUnion[int, str]
. Using that shorthand is recommended, so we can replace allUnion
by|
-
int | None
is equivalent toOptional[int]
. So we can also replace allOptional
by|
Edited by Manon Blanco