Cody Bable

Generation

generate functionTue, 25 Apr 2023

create a multiplication table grid

def multiplication_table(number): # Loop 10 times from i = 1 to 10 for i in range(1,11): print(number, 'x', i, '=', number*i) multiplication_table(3)

Want to kickstart your project?Use the new AI Studio to create your code