Commit 98b1f24d by BellCodeEditor

auto save

parent ca423c34
Showing with 12 additions and 11 deletions
for i in range(1,10):
for j in range(1,i+1):
print(i,"*",j,"=",(i*j),end=" ")
print()
a=input()
print(a[::-1])
for i in range(5,10):
for j in range(1,i+1):
print(j,"*",i,"=",(i*j),end=" ")
print()
'''import turtle
speed=20
for i in range(1,300):
turtle.forward(i+1.5)
turtle.right(91)
turtle.done()'''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment