0
In python write a function mathtable() which receives an integer and displays the multiplication table for the number up to 12.
2 Antworten
+ 5
so... write it and let's see where the problem is 🙂
0
Write a function mathtable () which receives an integer and displays the multiplication table for the number up to 12
Use the function in program to display its operation
In the nested structure, one loop controls the rows of the table and the other one is the columns of the table, "newline" character at the end of print statement can be removed as follows print("text here", end="" )