import turtle代码需要在Python编译器中运行。
首先需要安装Python编译器,然后在编译器中新建一个Python文件,将import turtle代码复制进去并保存。
接着在编译器中运行该文件,turtle图形界面就会弹出。
在该界面中,可以使用turtle库提供的函数来绘制各种图形,如正方形、圆形等。
import turtle as t t.setup(width=500, height=500, startx=1000, starty=100) t.penup() t.goto(0,-100) t.pendown() t.pensize(7) t.fillcolor("black") s = int(input("Please input your number:")) while 1: if s == 0: break elif s == 2: t.circle(100) elif s == 1: t.begin_fill() t.circle(100) t.end_fill() elif s > 2: t.circle(100, steps=s) s = int(input("Please input your number:")) t.clear()