python turtle 学习笔记

Python turtle库

Turtle库是Python语言中一个很流行的绘制图像的函数库,这次我们就用turtle库绘制一个有关我们中国传统的图片——太极图

代码

import turtle
t=turtle.Turtle()
t.penup()
t.goto(0,-50)
t.pendown()
t.begin_fill()
t.fillcolor('black')
t.circle(150,extent=180)
t.circle(75,extent=180)
t.circle(-75,extent=180)
t.end_fill()
t.circle(-150,extent=180)
t.penup()
t.goto(0,160)
t.pendown()
t.begin_fill()
t.fillcolor("white")
t.circle(30,extent=360)
t.end_fill()
t.penup()
t.goto(0,0)
t.pendown()
t.begin_fill()
t.fillcolor("black")
t.circle(30,extent=360)
t.end_fill()turtle.done()

结果

posted @ 2020-03-23 19:56  兴X  阅读(221)  评论(0编辑  收藏  举报