Commit 078412cf by BellCodeEditor

save project

parent 7f15970f
import turtle
turtle.pensize(2)
turtle.circle(100,steps)
turtle.done()
PI=float(3.1415926)
e=6
area=PI*e*e
print("%0.3f"%area)
\ No newline at end of file
print(16%-7)
\ No newline at end of file
print
\ No newline at end of file
print("\t宠物登记表\t")
print("姓名\t科属\t性别\n\t小咪\t猫科\t雌性\n\t小汪\t犬科\t雄性")
import turtle
pen=turtle.Pen()
pen.fillcolor("red")
for i in range(5):
pen.right(144)
pen.forward()
pen.end_fill()
turtle.done()
\ No newline at end of file
print("班级登记卡\n")
print("用户名:______\n")
print("所属班级:______\n")
print("验证码:_______")
print("3+5=?")
\ No newline at end of file
import turtle
turtle.penup()
turtle.goto(0,-200)
turtle.pendown()
turtle.circle(200)
turtle.penup()
turtle.goto(-100,50)
turtle.pendown()
turtle.fillcolor("green")
turtle.begin_fill()
turtle.circle(20)
turtle.end_fill()
turtle.penup()
turtle.goto(100,50)
turtle.pendown()
turtle.fillcolor("blue")
turtle.begin_fill()
turtle.circle(20)
turtle.end_fill()
turtle.penup()
turtle.goto(0,0)
turtle.pendown()
turtle.fillcolor("red")
turtle.begin_fill()
turtle.circle(20)
turtle.end_fill()
turtle.penup()
turtle.goto(-150,-70)
turtle.pendown()
turtle.goto(0,-170)
turtle.goto(150,-70)
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