Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

any python type hint


>>> import typing
>>> print(typing.Any.__doc__)
Special type indicating an unconstrained type.

    - Any object is an instance of Any.
    - Any class is a subclass of Any.
    - As a special case, Any and object are subclasses of each other.

Source by codefantasy.org #
 
PREVIOUS NEXT
Tagged: #python #type #hint
ADD COMMENT
Topic
Name
6+7 =