Write a Python program to display multiplication tables from 1 to 5.
Answers
Answered by
1
Answer:
Multiplication in Python is done by ( * ) operator, Then the result is saved in the product variable and printed out using string formatting. However, the more memory-efficient way to perform a multiplication in Python is by not using any variables at all it can be done
Similar questions