InterviewSolution
Saved Bookmarks
| 1. |
Accept a no. from the user and print the table of that no. in python |
|
Answer» ogram:n = int(INPUT("ENTER the number: ")) for X in RANGE(1, 11): print(n, "X", x, "=", n*x) |
|