当前位置:首页 > 行业动态 > 正文

python函数返回类型

Python函数的返回类型可以是任何数据类型,包括整数、浮点数、字符串、列表、元组、字典等。

Python 函数返回类型是指在定义函数时,通过 return 语句返回的数据类型,在 Python 中,函数可以返回任何类型的数据,包括整数、浮点数、字符串、列表、元组、字典等,以下是关于 Python 函数返回类型的详细解释。

1. 基本数据类型

1.1 整数(int)

def add(a: int, b: int) > int:
    return a + b

1.2 浮点数(float)

def divide(a: float, b: float) > float:
    return a / b

1.3 字符串(str)

def greet(name: str) > str:
    return f"Hello, {name}!"

2. 复合数据类型

2.1 列表(list)

def create_list(items: list) > list:
    return items

2.2 元组(tuple)

def create_tuple(items: tuple) > tuple:
    return items

2.3 字典(dict)

def create_dict(items: dict) > dict:
    return items

3. 自定义数据类型

3.1 类实例(class instance)

class Person:
    def __init__(self, name: str, age: int):
        self.name = name
        self.age = age
def create_person(name: str, age: int) > Person:
    return Person(name, age)

3.2 函数(function)

def square(x: int) > int:
    return x * x

Python 函数的返回类型可以通过类型注解来指定,如上述示例所示,类型注解可以帮助提高代码的可读性和健壮性。

0