What is the Any type?
Type hints and typing
Audio flashcard · 0:14Nortren·
What is the Any type?
0:14
Any is a special type that disables type checking for a value. A value of type Any can be assigned to anything and anything can be assigned to it. It is an escape hatch for code that is dynamic or for migrating untyped code. Overusing Any defeats the purpose of type hints.
docs.python.org