Python Programming: Write a function, called multTable, that takes an integer as an argument and uses a for-loop to prin
Posted: Sun Jul 03, 2022 10:00 am
Python Programming: Write a function, called multTable, thattakes an integer as an argument and uses a for-loop to print outthe multiplication table for that number from 1 up to and including12.
For example if the input is 4 then the function prints: 4 x 1 =4 4 x 2 = 8 ... 4 x 12 = 48
For example if the input is 4 then the function prints: 4 x 1 =4 4 x 2 = 8 ... 4 x 12 = 48