""" In the function greeting, the argument name is expected to be of type str and the return type str. Subtypes are accepted as arguments. """ def greeting(name: str) -> str: return 'Hello ' + name