Python type hints for function returning multiple return values
How do I write the function declaration using Python type hints for function returning multiple return values?
Is the below syntax allowed?
def greeting(name: str) -> str, List[float], int :
# do something
return a,b,c