您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python turtle工具怎么繪制四葉草,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
代碼如下
import turtle import time turtle.setup(650.,350,200,200) turtle.pendown() turtle.pensize(10) turtle.pencolor('green') #四葉草 def draw_clover(radius,rotate): #參數radius控制葉子的大小,rotate控制葉子的旋轉 for i in range(4): direction = i*90 turtle.seth(60+direction+rotate) #控制葉子根部的角度為60度 # turtle.fd(2*radius*pow(2,1/2)) #控制葉子根部的角度為90度 turtle.fd(4*radius) for j in range(2): turtle.seth(90+direction+rotate) turtle.circle(radius,180) turtle.seth(-60+direction+rotate) turtle.fd(4*radius) turtle.seth(-90) turtle.fd(6*radius) draw_clover(30,45) time.sleep(5)
內容擴展
import turtle def draw_shapes(): window = turtle.Screen() window.bgcolor("red") flower = turtle.Turtle() flower.speed(10) flower.shape("arrow") flower.right(45) for i in range(1,37): for j in range(1,5): draw_circle(flower,i,"green") flower.left(90) flower.right(45) flower.color("green") flower.forward(500) window.exitonclick() def draw_circle(circle,radius,color): circle.color(color) circle.circle(radius) draw_shapes()
Python主要應用于:1、Web開發;2、數據科學研究;3、網絡爬蟲;4、嵌入式應用開發;5、游戲開發;6、桌面應用開發。
關于“python turtle工具怎么繪制四葉草”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。