Commit 62c32913 by BellCodeEditor

save project

parent b8f9fd39
Showing with 7 additions and 4 deletions
......@@ -17,6 +17,10 @@
# # 隐藏画笔,保存画布
# pen.hideturtle()
# turtle.done()
i=7
j=4
print(i,"*",j,"=",j*i)
\ No newline at end of file
for j in range(1,10):
for s in range(1,j+1):
print(j,"*",s,"=",(j*s),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