Answers for "any python type hint"

1

any python type hint

from typing import Any

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

Python Answers by Framework

Browse Popular Code Answers by Language