Print the multiplication table of a number

 num = 5

for i in range(1, 11):

    print(num, "x", i, "=", num * i)


Comments

Popular posts from this blog

Simple Python Program Code for Snake Game

Iris Flowers Classification ML Project with Code

Linear Regression Model for House Price Prediction in Python