Python Program to print multiplication table form 1 to 10

Here’s an example Python code to print the multiplication table from 1 to 10:

# Loop through each number from 1 to 10
for i in range(1, 11):
    # Loop through each multiplier from 1 to 10
    for j in range(1, 11):
        # Print the product of i and j, separated by a tab character
        print(i*j, end="\t")
    # Print a newline character to move to the next row
    print()

In this code, we use a nested loop to print the multiplication table. The outer loop iterates over each number from 1 to 10. The inner loop iterates over each multiplier from 1 to 10. For each combination of number and multiplier, we print the product of the two, separated by a tab character. We use the end parameter of the print() function to prevent it from adding a newline character after each product. Finally, we use another print() statement without any arguments to add a newline character and move to the next row.

When you run this code, it should output the multiplication table from 1 to 10:

1	2	3	4	5	6	7	8	9	10	
2	4	6	8	10	12	14	16	18	20	
3	6	9	12	15	18	21	24	27	30	
4	8	12	16	20	24	28	32	36	40	
5	10	15	20	25	30	35	40	45	50	
6	12	18	24	30	36	42	48	54	60	
7	14	21	28	35	42	49	56	63	70	
8	16	24	32	40	48	56	64	72	80	
9	18	27	36	45	54	63	72	81	90	
10	20	30	40	50	60	70	80	90	100	

Note that you can change the range of the loops to print the multiplication table for a different range of numbers.

Related Examples

1. Python Program to Print Hello world!

2. Calculate the multiplication and sum of two numbers

3. Python Program to Find the Square Root

4. Python Program to Calculate the Area of a Triangle

5. Python Program to Solve Quadratic Equation

6. Python Program to Swap Two Variables

7. Python Program to Generate a Random Number

8. Return the count of a given substring from a string

9. Print the following pattern

10. Python Program to check if the given number is a palindrome number

11. Print downward Half-Pyramid Pattern with Star (asterisk)

12. Python Program to Convert Kilometers to Miles

13. Python Program to Check if a Number is Positive, Negative or 0

14. Python Program to Find the Sum of Natural Numbers

15. Print the sum of the current number and the previous number in Python

Leave a Reply

Your email address will not be published. Required fields are marked *

Wordpress Social Share Plugin powered by Ultimatelysocial
Wordpress Social Share Plugin powered by Ultimatelysocial