0 0 votes What is the output of the below code snippet?result = 0 list1 = [10,20,30] list2 = [1,2] for num in range(len(list1)): for num in range(len(list2)): result += list1[num] + list2[num] print(result)(a) 22(b) Error(c) 129(d) 99 Programming in Python python-programming python programming-in-python list for-loop + – sri321 191 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes Outer numInner numlist1[num]list2[num]Additionresult001011111012022233101011144112022266201011177212022299 Prachi_Yadav 1 answered Aug 30 • edited Aug 30 by Prachi_Yadav 1 Prachi_Yadav 1 comment Share Follow 0 reply Please log in or register to add a comment.