python programming question from Sejong University student….

Question Answered step-by-step python programming question from Sejong University student…. python programming question from Sejong University student. Question 3: Complete the following code (2 marks)def add(x,y):  ___________________________def mult(x,y):  ___________________________add(3,1)print(add(4,3))mult(2,8)       print(mult(3,6))Output:71618None (4 marks)L1 = [“blue”,”green”]L2 = [“purple”,”orange”]____________________________________del(L2[1])____________________________________print(colors)Output: [‘green’, ‘blue’, ‘red’, ‘purple’]Hint: You have to use built-in functions of lists such as append, extend etc. Computer Science Engineering & Technology Python Programming BUSINESS 222 Share QuestionEmailCopy link Comments (0)