太陽花和星星都是很美麗的圖形,今天我教大家怎么用Python畫出太陽花和星星。
首先,讓我們來看一下如何畫太陽花:
import turtle a=turtle.Turtle() a.speed(10) for i in range(24): a.begin_fill() a.color("red") a.circle(100) a.left(15) a.end_fill() turtle.done()
上面這段代碼就可以讓我們在Python畫布上畫出太陽花了。我們使用了Python中的turtle庫,進行圖形繪制。
接下來,我們看看如何畫星星:
from turtle import * penup() goto(0,-150) pendown() def draw_star(x=0,y=0,size=100,angle=144): setpos(x,y) setheading(0) for i in range(5): fd(size) rt(angle) fd(size) lt(72 - angle) draw_star(0,0,200,144) turtle.done()
同樣,這段代碼使用了turtle庫,但是我們定義了一個函數draw_star,幫助我們繪制星星。在函數中,我們使用了turtle庫中的一些函數,如setpos和setheading等。
以上就是如何用Python畫太陽花和星星的教程了,希望對大家有所幫助!