Python Program to Display Table of 5 Using for Loop and Range function

Python Program to Display Table of 5 Using for Loop and Range function


 print("The table of 5:")

for i in range(5,51,5):

    print(i)


Output:

The table of 5:

5

10

15

20

25

30

35

40

45

50

टिप्पणी पोस्ट करा

0 टिप्पण्या