[python]函数返回多个return值
程序员文章站
2022-04-27 20:39:43
python支持函数直接返回多个变量,具体用法如下: ......
python支持函数直接返回多个变量,具体用法如下:
>>> def test(): ... a=2 ... b=3 ... return a,b ... >>> print(test()) (2, 3) >>> a,b=test() >>> print(a) 2 >>> print(b) 3 >>> print(test()[0]) 2 >>> print(test()[1]) 3
上一篇: 三星加入 中国移动支付混战