用Python画圆的方法
1、打开电脑上安装好的Python编辑器

2、导入from turtle import *模块

3、接着输入如下代码:
pensize(2)
color('red','pink')
begin_fill()
pd()
circle(66)
end_fill()

4、然后按F5运行代码,就可以看到圆形的效果了

阅读量:194
阅读量:83
阅读量:53
阅读量:173
阅读量:28
1、打开电脑上安装好的Python编辑器

2、导入from turtle import *模块

3、接着输入如下代码:
pensize(2)
color('red','pink')
begin_fill()
pd()
circle(66)
end_fill()

4、然后按F5运行代码,就可以看到圆形的效果了
