Addition of two lists list1 = [1, 2, 3, 4] list2 = [4, 3, 2, 1] for i in list2: for j in list1: print(i,"+",j,"=",i+j) #Output Subtraction of two lists list1 = [1, 2, 3, 4] list2 = [4, 3, 2, 1] for i in list2: for j in list1: print(i,"-",j,"=",i-j) #Output Division of two lists list1 = [1, 2, 3, 4] list2 = [4, 3, 2, 1] for i in list2: for j in list1: print(i,"/",j,"=",i/j) #Output Multiplication of two lists list1 = [1, 2, 3, 4] list2 = [4, 3, 2, 1] for i in list2: for j in list1: print(i,"x",j,"=",i*j) #Output addition of two listadvance list lutorialdivision of two listlistlistsmultiplication of two two listpython listpython listssubtraction of two list Facebook Twitter Pinterest LinkedIn Aman Kharwal I am a programmer from India, and I am here to guide you with Data Science, Machine Learning, Python, and C++ for free. I hope you will learn a lot in your journey towards Coding, Machine Learning and Artificial Intelligence with me. Website Facebook Linked In Instagram Previous Post MCQ Game with Python Next Post Why do people use Python?