Read more

Python Program for compound interest

# Python3 program to find compound  interest for given values. def compound_interest(principle, rate, time): …

Python Program for simple interest

# Python3 program to find simple interest  # for given principal amount, time and  rate of interest. def simp…

Python program to add two numbers

# Python3 program to add two numbers num1 = 15 num2 = 12 # Adding two nos sum = num1 + num2 # printing values…

Load More
That is All