+ 2
Can you pleasa give me a puthon code that generates multiplication table of a number that the user chooses?
multiplication table
2 Answers
+ 12
#its simple
n = int(input("Input a number: "))
# use for loop to iterate 10 times
for i in range(1,11):
print(n,'x',i,'=',n*i)
+ 2
thank you very much