Commit 89074ea6 by BellCodeEditor

auto save

parent d83a1422
Showing with 4 additions and 4 deletions
i=1 for i in range(1,10):
for j in range(1,10): for j in range(1,i+1):
for i in range(1,10):
print(j,"*",i,"=",(j*i),end=" ") print(j,"*",i,"=",(j*i),end=" ")
print() print()
\ No newline at end of file
...@@ -3,7 +3,7 @@ screen=turtle.Screen() ...@@ -3,7 +3,7 @@ screen=turtle.Screen()
screen.bgcolor("black") screen.bgcolor("black")
colors=["red","green","orange","yellow"] colors=["red","green","orange","yellow"]
pen=turtle.Pen() pen=turtle.Pen()
for i in range(1,300): for i in range(1,30000000):
pen.color(colors[i%4]) pen.color(colors[i%4])
pen.forward(a) pen.forward(a)
pen.right(91) pen.right(91)
......
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