def s2q1(lst1, lst2):
for n in lst1:
print(n+lst2[n])
s2q1([1,2,3],[4,5,6,7])
the resultss are 6.8.10 could u explain how we get that resultand the program flow
Expert Answer
An answer will be send to you shortly. . . . .
def s2q1(lst1, lst2):
for n in lst1:
print(n+lst2[n])
s2q1([1,2,3],[4,5,6,7])
the resultss are 6.8.10 could u explain how we get that resultand the program flow
An answer will be send to you shortly. . . . .