Commit 711d677a by BellCodeEditor

auto save

parent 59f687ca
Showing with 34 additions and 0 deletions
'''
计算长方形的面积
并输出结果
'''
a=6 #长为6
b=3 #宽为3
s=a*b #计算长方形的面积
print("长方形的面积为:",s) #输出长方形的面积
\ No newline at end of file
import turtle
p=turtle.Pen()
p.penup()
p.goto(0,-200)
p.pendown()
p.circle(200)
p.penup()
p.goto(-100,50)
p.pendown()
p.dot(40,"blue")
p.penup()
p.goto(-100+200,50)
p.pendown()
p.dot(40,"blue")
p.penup()
p.goto(0,50)
p.pendown()
p.circle(-50,steps=3)
p.penup()
p.goto(-150,-70)
p.pendown()
p.goto(0,-170)
p.goto(-150+300,-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