Answers for "what is annotations in pyhton"

4

python type annotations

# This example illustrates both parameter and return type annotation
# Collection annotations are also supported
from typing import List

def greeting(names: List[str]) -> str:
    return 'Hello, ' + names[0] ' and ' + names[1]
Posted by: Guest on July-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language