1.

What will be the output? def f(i, values = []): values.append(i) return values f(1) f(2) v = f(3) print(v)

A. [1] [2] [3].
B. [1] [1, 2] [1, 2, 3].
C. [1, 2, 3].
D. 1 2 3
Answer» D. 1 2 3


Discussion

No Comment Found