用python画太极图的代码
时间: 2023-04-09 07:02:56 浏览: 160
以下是用Python画太极图的代码:
```python
import turtle
# 设置画布大小和背景颜色
turtle.setup(600, 600)
turtle.bgcolor("black")
# 定义画圆函数
def draw_circle(color, radius, position):
turtle.penup()
turtle.goto(position)
turtle.pendown()
turtle.fillcolor(color)
turtle.begin_fill()
turtle.circle(radius)
turtle.end_fill()
# 画黑色半圆
draw_circle("black", 200, (0, 0))
turtle.setheading(180)
turtle.circle(200, 180)
# 画白色半圆
draw_circle("white", 200, (0, 0))
turtle.setheading(0)
turtle.circle(-200, 180)
# 画黑色小圆
draw_circle("black", 50, (0, 100))
# 画白色小圆
draw_circle("white", 50, (0, -100))
# 隐藏画笔
turtle.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
希望能帮到你!
相关问题
用python画出太极图代码
以下是用 Python 画出太极图的代码:
```python
import turtle
# 设置画布大小和背景颜色
turtle.setup(500, 500)
turtle.bgcolor("black")
# 定义画圆函数
def draw_circle(color, radius, position):
turtle.penup()
turtle.goto(position)
turtle.pendown()
turtle.fillcolor(color)
turtle.begin_fill()
turtle.circle(radius)
turtle.end_fill()
# 画黑色半圆
draw_circle("black", 200, (0, 100))
turtle.right(180)
turtle.circle(200, 180)
# 画白色半圆
draw_circle("white", 200, (0, -100))
turtle.right(180)
turtle.circle(-200, 180)
# 画黑色小圆
draw_circle("black", 50, (0, 50))
# 画白色小圆
draw_circle("white", 50, (0, -50))
# 隐藏画笔
turtle.hideturtle()
# 显示画布
turtle.done()
```
希望能对你有所帮助!
用python画太极图
可以使用Python中的turtle库来画太极图。以下是一个简单的示例代码:
```python
import turtle
# 设置画布大小和背景色
turtle.setup(600, 600)
turtle.bgcolor("black")
# 创建画笔并设置颜色和粗细
pen = turtle.Pen()
pen.color("white")
pen.width(3)
# 画圆
pen.penup()
pen.goto(0, -200)
pen.pendown()
pen.circle(200)
# 画阴阳鱼
pen.penup()
pen.goto(0, 0)
pen.pendown()
pen.begin_fill()
pen.circle(100, 180)
pen.circle(50, 180)
pen.circle(100, 180)
pen.end_fill()
pen.penup()
pen.goto(0, -50)
pen.pendown()
pen.begin_fill()
pen.circle(50)
pen.end_fill()
# 隐藏画笔
pen.hideturtle()
# 显示画布
turtle.done()
```
运行以上代码即可在窗口中看到一个简单的太极图。
阅读全文