Find out the division by entering the percentage in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code per=int(input(“Enter your percentage : “))if per>=60: print(“Division : First”)elif per>=50: print(“Division : Second”)elif per>=40: print(“Division : Third”)else: print(“Fail”) Output Enter your percentage : 45Division : Third View All Python Programs