Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- n = int(input("Enter the number u want the table of: "))
- def funct(n):
- c = -1
- for i in range(0,n*11,n):
- c = c+1
- print(f"{n}*{c}={i}")
- funct(n)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement