python starting problems Q1 Write a function, add_up(), which takes one integer as input and returns the sum of the integersfrom zero to the input parameter.The function should return 0 if a non-integer is passed in. Q2define a list, display numbers which are divisible by 4 and if you find number greater than 120 come out of the loop. list1 = [8, 15, 32, 42, 60, 75, 122, 132, 150, 180, 190] Q3 Reverse the list using for loop num1 = [5, 15, 20, 25, 30]