[python]函数返回多个return值
程序员文章站
2022-07-10 12:12:58
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
下一篇: Android工具类-Toast相关工具
推荐阅读