python function return value typehint code example
Example 1: specify return type python function
def greeting(name: str) -> str:
return 'Hello, {}'.format(name)
Example 2: python return function
#the return function is used to return a value from a function
def double(number):
return number * 2