Python是一種廣泛使用的編程語言,不僅僅限于人類的編程,它還可以幫助我們培養(yǎng)出可愛的小動物。下面我們就來看看用Python編寫的小動物。
#導(dǎo)入turtle庫
import turtle
#創(chuàng)建烏龜
t = turtle.Turtle()
#繪制蝸牛殼
def draw_snail_shell(size, sides):
for i in range(sides):
t.forward(size)
t.right(360/sides)
size -= 2
#繪制小鳥
def draw_bird():
t.fillcolor("blue") #填充藍(lán)色
t.begin_fill() #開始填充
t.circle(50) #畫出小鳥的頭
t.end_fill()
t.right(90)
t.penup()
t.forward(70)
t.left(90)
t.pendown()
t.fillcolor("yellow") #填充黃色
t.begin_fill() #開始填充
t.circle(30) #畫出小鳥的眼睛
t.end_fill()
t.penup()
t.backward(70)
t.pendown()
#主函數(shù)
def main():
t.speed(0) #將小動物運行速度設(shè)為最快
t.penup()
t.goto(-200,0) #將小動物繪制的起點定位在屏幕左側(cè)中心
t.pendown()
draw_snail_shell(100, 36) #繪制蝸牛殼
t.penup()
t.goto(50,0) #將小動物繪制的起點定位在屏幕中心
t.pendown()
draw_bird() #繪制小鳥
#調(diào)用主函數(shù)
if __name__ == '__main__':
main()
在這個小程序中,我們使用了turtle庫來繪制可愛的小動物,通過封裝各種函數(shù),我們可以輕松地繪制出小蝸牛和小鳥。通過這種方式,我們不僅可以學(xué)習(xí)Python編程的基本技巧,還可以在創(chuàng)作中體會到樂趣。