Commit f78170bd by BellCodeEditor

auto save

parent 3b7723d1
Showing with 16 additions and 4 deletions
import turtle
p=turtle.Pen()
scr=turtle.Screen()
scr.bgcolor("black")
asdfghjkl=["red","blue","green","yellow"]
for i in range(1,3000000000000000000000):
p.pencolor(asdfghjkl[i%4])
p.forward(i)
p.right(91)
p.hideturtle()
turtle.done()
for i in range(1,10):
for j in range(1,i+1):
print(i,"x",j,"=",(i*j),end=" ")
print()
\ No newline at end of file
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