(點選上方快速關註並設定為星標,一起學Python)
參考連結:
https://www.cnblogs.com/asd516970982/p/10484000.html
用 Python 中的 turtle 庫畫個太陽花,有以下幾個步驟
1、安裝turtle庫
pip install turtle
2、使用Pycharm開發工具,建立工程專案,編寫畫太陽花所需的程式碼,如下:
from turtle import *
color('red','yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) <1:
break
end_fill()
done()
3、儲存執行程式碼,這時候你就可以看到一個畫面,這就是開始畫太陽花了:
4、然後,你就可以獲得一朵漂亮的太陽花了
PS:你也可以在color中改變筆的顏色和花的顏色,在forward中改變你的花的大小,祝你玩的開心!
朋友會在“發現-看一看”看到你“在看”的內容