马士兵Python学习笔记_P90_89.函数的返回值
一、函数的返回值
二、代码示例
print("------------------------------- 函数的返回值 ------------------------------------")
def fun(num):
odd = []
even = []
for i in num:
if i % 2 == 0:
even.append(i)
else:
odd.append(i)
return odd, even
lst = [10, 29, 34, 23, 44, 53, 55]
print(fun(lst))
'''
函数的返回值
(1)如果函数没有返回值【函数执行完毕之后,不需要给调用处提供数据】,return 可以省略不屑。
(2)函数的返回值,如果是1个,直接返回该值及类型
(3)函数的返回值,如果是多个,返回的结果为元组
'''
print("-------------------------(1)函数没有返回值-------------------------")
def fun1():
print("hello")
fun1()
print("-------------------------(2)函数只有1个返回值 -------------------------")
def fun2():
return "hello"
res = fun2()
print(res, type(res))
print("-------------------------(3)函数有多个返回值 -------------------------")
def fun3():
return "hello", "world"
res3 = fun3()
print(res3, type(res3))
'''函数在定义时,是否需要返回值,视情况而定'''
运行结果:
D:\Environment\Python\Python311\python.exe D:\Environment\PythonWorks\learnpython\马士兵Python\第10章_水晶球不调用不动\P90_89.函数的返回值.py
------------------------------- 函数的返回值 ------------------------------------
([29, 23, 53, 55], [10, 34, 44])
-------------------------(1)函数没有返回值-------------------------
hello
-------------------------(2)函数只有1个返回值 -------------------------
hello <class 'str'>
-------------------------(3)函数有多个返回值 -------------------------
('hello', 'world') <class 'tuple'>
Process finished with exit code 0
B站视频链接:https://www.bilibili.com/video/BV1wD4y1o7AS?p=90