Commit ad23cfe1 by BellCodeEditor

auto save

parent 59f687ca
Showing with 52 additions and 0 deletions
# a=3
# b=2
# print(a>b)
# print(aprint(a==b)
# print(a!=b)
# import keyword
# print(keyword.kwlist)
# print(3/5)
# print(3.0/5)
# print(3//5)
# print(3%5)
# print(2**4*3)
# print('hello,world')
# print('hello','world')
# a=int(input())
# print("百:",a//100,",十:",a//10%10,",个:",a%10)
# import turtle
# g=turtle.Pen()
# g.hideturtle()
# g.penup()
# g.goto(-100,100)
# g.pendown()
# g.pencolor("black")
# for i in range(4):
# g.forward(200)
# g.right(90)
# g.fillcolor("blue")
# g.begin_fill()
# g.hideturtle()
# g.penup()
# g.goto(0,-100)
# g.pendown()
# g.circle(100)
# g.end_fill()
# turtle.done()
# import turtle
# turtle.pensize(3)
# turtle.forward(150)
# turtle.circle(50,180)
# turtle.forward(180)
# turtle.circle(48,180)
# turtle.forward(150)
# turtle.circle(45,180)
# turtle.forward(120)
# turtle.done()
import turtle
pen=turtle.Pen()
for i in range(5):
pen.forward()
\ 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