Important Notice:

Simple Interest

Simple Interest

3 views 1 min read

Simple Interest in Python (साधारण ब्याज) :-

Simple Interest (SI) वह ब्याज है जो केवल Principal (मूलधन) पर लगाया जाता है।

Formula (सूत्र) -

Simple Interest = (Principal × Rate × Time) / 100

Python Program-

# Input
principal = float(input("Enter Principal: "))
rate = float(input("Enter Rate (%): "))
time = float(input("Enter Time (Years): "))

# Calculate Simple Interest
si = (principal * rate * time) / 100

# Output
print("Simple Interest =", si)
 
Output -
 
Enter Principal: 10000
Enter Rate (%): 5
Enter Time (Years): 2
Simple Interest = 1000.0

Related Notes