Skip to content

Commit 81e8789

Browse files
this is the multiplication table creator by giving number according to you.
1 parent 93a771d commit 81e8789

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

MT.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
num = int(input("Enter a number.."))
2+
3+
for i in range(1,11):
4+
print(num,'x',i,'=',num*i)

0 commit comments

Comments
 (0)