Commit 8e3751ac by BellCodeEditor

auto save

parent 680cfdc9
Showing with 15 additions and 3 deletions
a=99898
b=9999898898988988
print(a*b)
\ No newline at end of file
for i in range(1,10000):
for j in range(1,i+1):
print(j,"*",i,"=",j*i,end=" ")
print()
\ No newline at end of file
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(100000000000)
colors=["red","orange","yellow","green"] colors=["red","orange","yellow","green"]
for i in range(1,300): for i in range(1,500):
pen.forward(i) pen.forward(i)
pen.pencolor(colors[i%4]) a=colors[i%4]
pen.right(91) pen.pencolor(a)
pen.right(144)
pen.hideturtle() pen.hideturtle()
turtle.done() turtle.done()
\ 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