Python turtle點(diǎn)狀圖(2.0)
from turtle import *
import random
#子程序
#多邊形def
def dbx(bs,bc):
? ? a=random.randint(0,255)
? ? b=random.randint(0,255)
? ? c=random.randint(0,255)
? ? colormode(255)
? ? pencolor((a,b,c))
? ? fillcolor((a,b,c))
? ? begin_fill()
? ? circle(bc/2)
? ? end_fill()
#每一行的輸出
def hang():
? ? for i in range(10):
? ? ? ? dbx(3,20)
? ? ? ? up()
? ? ? ? fd(30)
? ? ? ? pd()
#每一列的輸出
def lie():
? ? for i in range(9):
? ? ? ? up()
? ? ? ? rt(90)
? ? ? ? fd(30)
? ? ? ? rt(90)
? ? ? ? fd(300)
? ? ? ? rt(180)
? ? ? ? hang()
#主程序
speed(0)
#定位
pu()
fd(-150)
lt(90)
fd(150)
rt(90)
pd()
hang()
lie()
hideturtle()

2.0版本新增加了定位
turtle畫(huà)筆默認(rèn)原來(lái)位置是在正中
定位功能在主程序部分將畫(huà)筆移到左上角使圖像出現(xiàn)在中央
附:在IDLE中運(yùn)行時(shí)注意對(duì)齊
標(biāo)簽: