Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

nums: List[int] in python function

"""
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


Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #python #function
ADD COMMENT
Topic
Name
7+7 =