Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Multiplication Table Model 02
- t = int(input('Which multiplication table do you want? '))
- print('-'*12)
- print('{} X {} = {}'.format(t, 0, t*0))
- print('{} X {} = {}'.format(t, 1, t*1))
- print('{} X {} = {}'.format(t, 2, t*2))
- print('{} X {} = {}'.format(t, 3, t*3))
- print('{} X {} = {}'.format(t, 4, t*4))
- print('{} X {} = {}'.format(t, 5, t*5))
- print('{} X {} = {}'.format(t, 6, t*6))
- print('{} X {} = {}'.format(t, 7, t*7))
- print('{} X {} = {}'.format(t, 8, t*8))
- print('{} X {} = {}'.format(t, 9, t*9))
- print('{} X {} = {}'.format(t, 10, t*10))
- print('-'*12)
- #by Estéfani =D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement