繪製乙隻小籃子,使用了隨機函式獲得小籃子的線條顏色,種子預設為當前系統時間,所以每次看到的小籃子顏色都會不同 。隨機函式的用法可以參考博文
《python標準庫之random庫》
繪製**如下:
from turtle import *
import random
pensize(2.5)
ls_l =
ls_lcor =
ls_r =
ls_rcor =
#藍身弧線
def part_circle(x,y,heading,r):#
pu()
goto(x,y)
seth(heading)
circle(r,130)
ls_lcor = [xcor(),ycor()]
pd()
color(random.uniform(0,1),random.uniform(0,1),random.uniform(0,1))
circle(r,100)
ls_rcor = [xcor(),ycor()]
pu()
circle(r,130)
#藍身x = 0
y = 0
n = 8
for i in range(n):
part_circle(0,y+20*i,180,90+5*i)
pu()
goto(ls_l[0])
pd()
goto(ls_l[n-1])
pu()
goto(ls_r[0])
pd()
goto(ls_r[n-1])
#提手pensize(5)
seth(90)
fd(30)
circle(95,180)
seth(-90)
fd(30)
#籃口pensize(2)
seth(50)
circle(-125,100)
hideturtle()
done()
用python畫樹林 用python畫櫻樹
from turtle import from random import from math import def tree n,l pd 下筆 陰影效果 t cos radians heading 45 8 0.25 pencolor t,t,t pensize n 3 forward l 畫樹...
用Python畫笑臉
開心一下,喵 很早之前畫的,放上來做個紀念吧 如下 from turtle import screensize 600,600 speed 10 def arc initial degree,step,rotate,rangenum seth initial degree for i in rang...
python畫簡單花 怎麼用python畫花朵
第一步,開啟選單欄,輸入idle,開啟shell。第二步,新建乙個檔案,並命名。第三步,匯入turtle模組,建立乙個新視窗用於繪圖,再建立乙個turtle物件。第四步,設定顏色,先繪製出花莖部,再繪製花蕊部分的圓,並填充顏色。第五步,用迴圈語句,使畫筆繪製n個花瓣,最後隱藏畫筆。第六步,定義單擊視...