91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用Python+turtle繪制對稱圖形

發布時間:2022-07-12 10:00:53 來源:億速云 閱讀:507 作者:iii 欄目:開發技術

這篇文章主要介紹“怎么使用Python+turtle繪制對稱圖形”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“怎么使用Python+turtle繪制對稱圖形”文章能幫助大家解決問題。

1.圖1

第一個圖是由三角形組成的花,感興趣的小伙伴可以自己嘗試在python中用turtle庫繪制一下。

怎么使用Python+turtle繪制對稱圖形

具體代碼如下:

# -*- coding: UTF-8 -*-
import os
import time
import pygame
import turtle as t 

t.title('')
t.speed(10)
t.setup(startx=0, starty = 0, width=800, height = 600)
#第一幅圖
def w_sg1(theta):
    t.setheading(theta)
    t.color('green')
    t.begin_fill()
    t.forward(60)
    t.left(100)
    t.forward(20)
    t.left(100)
    t.forward(60)
    t.end_fill()
for i in range(8):
    w_sg1(70 + i*45)
    t.hideturtle()

2.圖2

第二個圖是旋風輪,怎么通過調整圖1代碼,繪制出如下圖形?

怎么使用Python+turtle繪制對稱圖形

具體代碼如下:

# -*- coding: UTF-8 -*-
import os
import time
import pygame
import turtle as t 

t.title('')
t.speed(10)
t.setup(startx=0, starty = 0, width=800, height = 600)
#第二幅圖
def w_sg2(theta):
    t.setheading(theta)
    t.color('green')
    t.begin_fill()
    t.forward(55)
    t.left(100)
    t.forward(20)
    t.left(100)
    t.forward(60)
    t.end_fill()
for i in range(24):
    w_sg2(70 + i*15)
    t.hideturtle()

3.圖3

第三個圖是八葉花,你也可以試著把葉子改成別的顏色。

怎么使用Python+turtle繪制對稱圖形

具體代碼如下:

# -*- coding: UTF-8 -*-
import os
import time
import pygame
import turtle as t 

t.title('')
t.speed(10)
t.setup(startx=0, starty = 0, width=800, height = 600)
#第三幅圖
def w_sg3(theta):
    t.color('green')
    t.begin_fill()
    t.setheading(theta)
    t.circle(80, 50)
    t.left(130)
    t.circle(80, 50)
    t.end_fill()
for i in range(8):
    w_sg3(30 + i*45)
    t.hideturtle()

4.圖4

第四個圖是16葉花,怎么通過調整8葉花代碼,繪制出如下圖形?

怎么使用Python+turtle繪制對稱圖形

具體代碼如下:

t.clearscreen()
#第四幅圖
for i in range(16):
    w_sg3(30 + i*30)
    t.hideturtle() 
t.goto(0, -3)
t.color('white')
t.begin_fill()
t.circle(6, 360)
t.end_fill()

5.圖5

第五個圖是小太陽,怎么通過調整8葉花代碼,繪制出如下圖形?

怎么使用Python+turtle繪制對稱圖形

具體代碼如下:

# -*- coding: UTF-8 -*-
import os
import time
import pygame
import turtle as t 

t.title('')
t.speed(10)
t.setup(startx=0, starty = 0, width=800, height = 600)
#第五幅圖
def w_sg3(theta):
    t.color('red')
    t.begin_fill()
    t.setheading(theta)
    t.circle(80, 50)
    t.left(130)
    t.circle(80, 50)
    t.end_fill()
for i in range(24):
    w_sg3(30 + i*15)
    t.hideturtle()

6.圖6

第六個圖是陰陽圖。

怎么使用Python+turtle繪制對稱圖形

具體代碼如下:

# -*- coding: UTF-8 -*-
import os
import time
import pygame
import turtle as t 

t.title('')
t.speed(10)
t.setup(startx=0, starty = 0, width=800, height = 600)
#陰陽圖
def w_sg4():
    t.color('black')
    t.begin_fill()
    t.circle(80, 360)
    t.end_fill()
    t.color('black', 'white')
    t.begin_fill()
    t.circle(80, 180)
    t.circle(40, 180)
    t.circle(-40, 180)
    t.end_fill()
    t.penup()
    t.goto(0, 130)
    t.pendown()
    t.begin_fill()
    t.color('black')
    t.circle(8, 360)
    t.end_fill()
    t.penup()
    t.goto(0, 130-90)
    t.pendown()
    t.begin_fill()
    t.color('white')
    t.circle(8, 360)
    t.end_fill()
    t.hideturtle()
w_sg4()

關于“怎么使用Python+turtle繪制對稱圖形”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

佛教| 滨海县| 固镇县| 阜新| 九江县| 闸北区| 江阴市| 海门市| 洛隆县| 获嘉县| 久治县| 长兴县| 毕节市| 洛南县| 浙江省| 伊川县| 平江县| 望谟县| 元阳县| 石柱| 乐东| 突泉县| 奉贤区| 枣强县| 富锦市| 肃南| 长宁区| 通山县| 德安县| 青浦区| 库尔勒市| 金堂县| 荥阳市| 宝坻区| 伊宁市| 宣汉县| 镇赉县| 临城县| 隆回县| 岳普湖县| 临泉县|