Commit 7dcce1b3 by BellCodeEditor

auto save

parent 2a9b06bd
Showing with 41 additions and 4 deletions
a=10 # import turtle
b=0 # turtle.shape('square')
print(a and b) # turtle.home()
\ No newline at end of file # turtle.dot()
# turtle.stamp()
# turtle.forward(100)
# turtle.setheading(90)
# turtle.stamp()
# turtle.forward(100)
# turtle.left(90)
# turtle.stamp()
# turtle.forward(100)
# turtle.left(90)
# turtle.stamp()
# turtle.forward(100)
# turtle.done()
# import turtle
# turtle.setheading(0)
# turtle.circle(50,90)
# turtle.circle(-50,90)
# turtle.circle(50,90)
# turtle.circle(-50,-90)
# turtle.done()
# print(a*=b
# a=int(input("qinhsuru"))
# b=int(a/3600)
# c=a%3600
# d=int(c/60)
# e=c%60
# print(str(b)+" "+str(d)+" "+str(e))
import turtle
t=turtle.Pen()
t.pencolor("red")
t.fillcolor("green")
t.begin_fill()
for i in range(3):
t.forward(100)
t.left(120)
t.end_fill()
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