Read more

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