is there any need to specify return type in python funtion code example
Example: specify return type python function
def greeting(name: str) -> str:
return 'Hello, {}'.format(name)
def greeting(name: str) -> str:
return 'Hello, {}'.format(name)