Answers for "python type hint for type"

1

any python type hint

from typing import Any

def my_func(a: Any) -> Any:
	return a
Posted by: Guest on July-22-2021

Code answers related to "python type hint for type"

Python Answers by Framework

Browse Popular Code Answers by Language