Commit ba8ef284 by BellCodeEditor

auto save

parent ed4c0966
Showing with 15 additions and 3 deletions
print(9)
i
\ No newline at end of file
for i in range(1,10):
for j in range(1,i+1):
print(j,"X",i,"=",(i*j),end=" ")
print(end="j")
print(end="*")
print(end="i")
print(end="=")
print(end="i*j ")
print()
\ No newline at end of file
for i in range(1,10):
for j in range(1,i+1):
print(j,"X",i,"=",(j*i),end=" ")
print()
\ No newline at end of file
import turtle
pen=turtle.Pen()
turtle.bgcolor("black")
colors=["red","pink","green","blue"]
for i in range(9999999999999999999999999999999999):
colors=["red","yellow","green","blue"]
for i in range(1,30,1):
pen.hideturtle()
pen.speed(0)
pen.pencolor(colors[i%4])
......
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