执行下面Python代码,调用函数fun可以得到一个元组类型的数据。
1 def fun(a, b): 2 return a // b, a % b 3 4 5 print(type(fun(8, 5)))