def f1: a, b=1,2 return b

def f1():
        a, b=1,2
        return b, a

print(f1())
print函数输出的结果是()。

答案
D

题目信息

题号:3702
题型:单选题
难度:普通