python variable with hint code example
Example 1: specify return type python function
def greeting(name: str) -> str:
return 'Hello, {}'.format(name)
Example 2: type declaration python
def greeting(name: str) -> str:
return 'Hello ' + name