मराठी

Write a function to print the table of a given number. The number has to be entered by the user. - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write a function to print the table of a given number. The number has to be entered by the user.

थोडक्यात उत्तर

उत्तर

Program:
#Program to print the table of a number
num = int(input("Enter the number to display its table: "))
print("Table: ");
for a in range(1,11):
    print(num," × ",a," = ",(num*a))

OUTPUT:
Enter the number to display its table: 5
Table: 
5  ×  1  =  5
5  ×  2  =  10
5  ×  3  =  15
5  ×  4  =  20
5  ×  5  =  25
5  ×  6  =  30
5  ×  7  =  35
5  ×  8  =  40
5  ×  9  =  45
5  ×  10  =  50
shaalaa.com
The ‘For’ Loop
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 6: Flow of Control - Exercise [पृष्ठ १४०]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
पाठ 6 Flow of Control
Exercise | Q 2. | पृष्ठ १४०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×