Class 11th IP (065) Write a Python program to calculate Simple and Compound interest. SOLUTION.. p = float(input("Principal: ")) r = float(input("Rate: ")) t = float(input("Time: ")) si =...
Class 11th IP 065
Class 11th IP (065) To calculate perimeter/circumference and area of shapes such as triangle, rectangle, square and circle. SOLUTION.. import math # Rectangle l = float(input("Length: ")) b =...
Class 11th IP Write a Python Program To find average and grade for given marks. SOLUTION . marks = n = int(input("Enter the number of subject you want...