MemotivaType hints and typing

What is the difference between Optional and Union?

Type hints and typing

Audio flashcard · 0:13

Nortren·

What is the difference between Optional and Union?

0:13

Optional of T is shorthand for Union of T and None, meaning the value can be of type T or None. Since Python 3.10, the pipe syntax replaces both: T pipe None for Optional, T pipe U for Union. The pipe form is now preferred in modern code.
peps.python.org