#python program to print the even numbers from a list x = [1,2,3,4,5,5,6,8,9,10] for i in x: if i % 2 == 0: print(i) #python program to sum all numbers in a list x = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15] k =0 for i in x: k=i+k print('your total value is ',k) #python program to multiply all numbers in a list x =[1,2,3,4,5,6,7,8,9] a = 0 for i in x: a=i*a print('your final value after multiplication is ', a) #python program to find the maximum value of three numbers a =19 b=2 c=15 if a>b: max_num = a elif b>a: max_num = b if max_num>c: new_max_num = max_num else: new_max_num = c print('now the maximum value here is ', new_max_num)