#Write a program that prompts the user to enter one integer. The program #will do the following: if the input number is 1, the program will print #your name 3 times; if the input number is 2, the program will find the #sum of all even numbers between 0 and 10, otherwise, the program will print "I #love Python language" 5 times. choice=int(input("enter choice ")) if(choice==1): for i in range(3): print("yana") elif(choice==2): sum=0 for i in range(0, 11, 2): #i=0, 2, 4, 6, 8, 10 sum=sum+i print(sum) #anothe solution sum=0 for i in range(11): if(i%2==0): sum=sum+i print(sum) else: for i in range(5): print("I love Python")