“Cualquier pista de tipo Python” Código de respuesta

Cualquier pista de tipo Python

from typing import Any

def my_func(a: Any) -> Any:
	return a
Thankful Teira

Cualquier pista de tipo Python


>>> 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.

Panicky Panda

Respuestas similares a “Cualquier pista de tipo Python”

Preguntas similares a “Cualquier pista de tipo Python”

Más respuestas relacionadas con “Cualquier pista de tipo Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código