#在python中函数一次可以返回多个结果,这其实是通过返回一个元组来实现的
def get_rectangle():
"""返回长方形的宽和高"""
width=100
height=20
return width,height
result=get_rectangle()
print(result,type(result))
"""
输出
(100, 20) <class 'tuple'>
"""
#在python中函数一次可以返回多个结果,这其实是通过返回一个元组来实现的
def get_rectangle():
"""返回长方形的宽和高"""
width=100
height=20
return width,height
result=get_rectangle()
print(result,type(result))
"""
输出
(100, 20) <class 'tuple'>
"""