python函数返回多个值时的数据类型是_Python3 注释多个返回值的函数类型

场景

这要是讲函数注释的用法

没有返回值

def function(ver: str):

print(var)

单个返回值

def function(ver: str) -> dict:

a=[ver,ver,ver]

return a

多个返回值

您总是返回一个对象;使用return one, two只返回一个元组。

所以是的,-> Tuple[bool, str] 完全正确。

只有类型Tuple允许您指定元素的固定数量,每个元素都有一个不同的类型。

如果函数生成的返回值数目是固定的值,尤其是当这些值是特定的、不同的类型时,则应该始终返回元组。

from typing import Tuple

def function(ver: str) -> Tuple[str, str, bool]:

a=ver

b="BBB"

c=True

return a, b, c

A,B,C=function("hello")

print(A)

print(B)

print(C)

其他序列类型对于可变数量的元素应该有one类型规范,因此typing.Sequence在这里不合适。

另见 What's the difference between lists and tuples?

Tuples are heterogeneous data structures (i.e., their entries have different meanings), while lists

你可能感兴趣的:(python函数返回多个值时的数据类型是_Python3 注释多个返回值的函数类型)