Commit 4d10b45a by BellCodeEditor

save project

parent ac77160e
Showing with 22 additions and 5 deletions
# 利用write()帮助悟空给诺依回信吧~
import turtle
pen=turtle.Pen()
pen.write("你知道哪个季节最酷吗?\n是秋天,因为秋裤",font=("宋体",30,"normal"))
pen.hideturtle()
turtle.done()
\ No newline at end of file
# pen=turtle.Pen()
# pen.write("你知道哪个季节最酷吗?\n是秋天,因为秋裤",font=("宋体",30,"normal"))
# pen.hideturtle()
pen1=turtle.Pen()
pen1.pencolor("red")
#6.2设置粗细pen.pensize()
pen1.pensize(10)
#7.调整画笔的面向方向,左转45
pen1.left(45)
#8.画右下角的边,长100(直径)
pen1.forward(100)
#9.画半圆circle() 半径为50
pen1.circle(50,180)
#10.右转90
pen1.right(90)
#11.画半圆circle() 半径为50 ,夹角为180
pen1.circle(50,180)
#12.画左下角的边,长100(直径)
pen1.forward(100)
pen1.hideturtle()
turtle.done()
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