Multiplication tables

Sign in to test your solution.
def multiplication_table(number): """ >>> multiplication_table(12) 1 * 12 = 12 2 * 12 = 24 3 * 12 = 36 4 * 12 = 48 5 * 12 = 60 6 * 12 = 72 7 * 12 = 84 8 * 12 = 96 9 * 12 = 108 10 * 12 = 120 """ if __name__ == '__main__': import doctest doctest.testmod()

  Python sandbox

This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.

Test case being debugged