知识点:Python 10/10(单选) What is the outp...
发布于 2022-03-03 17:31:03
知识点:Python 10/10(单选)
What is the output for the LAST print?
def f(x,l=[]):
for i in range(x):
l.append(i*i)
print(l)
f(2)
f(3,[3,2,1])
f(3)
What is the output for the LAST print?
def f(x,l=[]):
for i in range(x):
l.append(i*i)
print(l)
f(2)
f(3,[3,2,1])
f(3)
登录后免费查看答案
关注者
0
被浏览
73