資源簡(jiǎn)介
python繪制隨機(jī)顏色太陽(yáng)花
代碼片段和文件信息
#繪制太陽(yáng)花
#?coding=utf-8?
import?turtle?
import?time
import?random
#定義隨機(jī)顏色函數(shù):
def?randomcolor():
????colorArr?=?[‘1‘‘2‘‘3‘‘4‘‘5‘‘6‘‘7‘‘8‘‘9‘‘A‘‘B‘‘C‘‘D‘‘E‘‘F‘]
????color1?=?““
????for?i?in?range(6):
????????color1?+=?colorArr[random.randint(014)]
????color=“#“+color1
????return?color
turtle.setup(width=600height
評(píng)論
共有 條評(píng)論