Commit ce67fc3e by BellCodeEditor

auto save

parent babd7b0d
Showing with 269 additions and 1 deletions
print(1*1=1)
print(1*2=2)
print()
print()
print()
print()
print()
print()
print()
a=5
b=7
a*b=
......@@ -2,7 +2,9 @@ import turtle
pen = turtle.Pen()
pen.speed(-0)
colors=["red","orange","yellow","green"]
screen = turtle.Screen()
screen.bgcolor("black")
colors=["red","blue","yellow","green"]
for i in range(1,30000000000000000000000,):
pen.pencolor(colors[i%4])
pen.forward(i)
......@@ -196,3 +198,235 @@ 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