+ 1
Qution
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 ,1] [3,2,1,0,1,4] ????? tel me if u know the flow of control of last one but i know the answer thanks in advance jumps
1 Resposta
+ 1
(clap) (clap)
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 ,1] [3,2,1,0,1,4] ????? tel me if u know the flow of control of last one but i know the answer thanks in advance jumps