补全代码from turtle import circle, fd, right, getscreen #********* Begin *********# import turtle turtle.seth(-45) turtle.fd(141) turtle.seth(45) turtle.fd(141) turtle.seth(135) turtle.fd(141) turtle.seth(225) turtle.fd(141) turtle.seth(-45) turtle.circle(45,100) #********* End *********# #保存屏幕图片 ts = turtle.getscreen() ts.getcanvas().postscript(file="Python/src1/py1-6/yourimg/sj.ps")
时间: 2023-07-18 08:44:30 浏览: 174
turtle画图代码大全
以下是补全后的代码:
```
from turtle import circle, fd, right, getscreen
#********* Begin *********#
import turtle
turtle.seth(-45)
turtle.fd(141)
turtle.seth(45)
turtle.fd(141)
turtle.seth(135)
turtle.fd(141)
turtle.seth(225)
turtle.fd(141)
turtle.seth(-45)
turtle.circle(45,100)
#********* End *********#
#保存屏幕图片
ts = turtle.getscreen()
ts.getcanvas().postscript(file="Python/src1/py1-6/yourimg/sj.ps")
```
运行上述代码后,turtle 库将绘制一个由四条直线和一个圆弧组成的图形,并将结果保存在名为 "sj.ps" 的 PostScript 文件中。其中,`turtle.seth()` 函数用于设置海龟的朝向,`turtle.fd()` 函数用于让海龟前进一定距离,`turtle.circle()` 函数用于绘制圆弧。
阅读全文