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

2、导入from turtle import *模块

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

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

阅读量:164
阅读量:67
阅读量:40
阅读量:115
阅读量:101
1、打开电脑上安装好的Python编辑器

2、导入from turtle import *模块

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

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