Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # This is a reverse table gen made by Ananta bhattarai
- num = int(input("enter the number u want the table of"))
- counter = 10
- for i in range(num*10,-1*num,(-1*num)):
- print(f"{num}*{counter}={i}")
- counter = counter-1
Add Comment
Please, Sign In to add comment