Computer Science, asked by ravinaagrahari8625, 3 days ago

Write a program to print the simple interest and the amount using LET statement

Answers

Answered by r27272278
0

P= 5000 #Principal Amount

R=15 #Rate

T=1 #Time

SI = (P*R*T)/100; # Simple Interest calculation

print("Simple Interest is :");

print(SI); #prints Simple Interest

output

simple interest is 750.0

Similar questions