Commit 711cc63b by BellCodeEditor

save project

parent 1c4bfd46
Showing with 6 additions and 3 deletions
...@@ -23,7 +23,10 @@ ...@@ -23,7 +23,10 @@
# pen.hideturtle() # pen.hideturtle()
# turtle.done() # turtle.done()
i=1
for j in range(1,10): for i in range(1,10):
print(i,'X',j,'=',(i*j),end=(" ")) for j in range(1,i+1):
print(j,'X',i,'=',(i*j),end=(" "))
print()
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