Python作為一種高級編程語言,可以用來進行各種操作,包括畫飛機。以下是Python畫飛機代碼的示例:
import turtle # 初始化畫布 t = turtle.Turtle() t.speed(0) t.hideturtle() t.penup() # 把畫筆移動到左邊 t.setpos(-200, 0) t.pendown() # 畫機身 t.fillcolor("gray") t.begin_fill() t.forward(400) t.right(150) t.forward(100) t.right(30) t.forward(75) t.right(20) t.forward(250) t.right(20) t.forward(75) t.right(30) t.forward(100) t.end_fill() # 畫機翼 t.penup() t.setpos(50, 50) t.pendown() t.fillcolor("lightgray") t.begin_fill() t.right(150) t.forward(125) t.right(160) t.forward(215) t.right(150) t.forward(125) t.right(20) t.forward(240) t.end_fill() # 畫引擎 t.penup() t.setpos(-100, -50) t.pendown() t.fillcolor("black") t.begin_fill() t.circle(50) t.end_fill() # 顯示畫面 turtle.done()
這段代碼使用了turtle模塊,其中的t.speed(0)語句設(shè)置畫筆移動速度為最快,t.hideturtle()語句隱藏了畫筆的形狀,t.penup()和t.pendown()語句控制畫筆的起落,t.forward()和t.right()語句控制畫筆的前進和轉(zhuǎn)向。通過以上語句的組合,我們可以在屏幕上畫出一個簡單的飛機模型。
上一篇oracle cache
下一篇php iis 部署