Python typing module list

Code examples

2
0

specify return type python function

def greeting(name: str) -> str:
  return 'Hello, {}'.format(name)
0
0

typing multiple types

from typing import Union


def foo(client_id: str) -> Union[list,bool]
0
0

python typing module list

"""
typing.Tuple and typing.List are Generic types; this means you can specify what type their contents must be:
"""

def f(points: Tuple[float, float]):
    return map(do_stuff, points)

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................