您好,登錄后才能下訂單哦!
python的turtle模塊可以畫什么?很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
python的turtle模塊提供了繪制圖像的功能,簡單易懂,下面來介紹一下。
一、turtle其實(shí)就是一個(gè)畫圖板,給你提供了一個(gè)畫筆。我們先設(shè)置一下基本的屬性:
1,運(yùn)動(dòng)屬性
forward(d) 向前移動(dòng)距離d代表距離 backward(d) 向后移動(dòng)距離d代表距離 right(degree) 向右轉(zhuǎn)動(dòng)多少度 left(degree) 向左轉(zhuǎn)動(dòng)多少度 goto(x,y) 將畫筆移動(dòng)到坐標(biāo)為(x,y)的位置 stamp() 繪制當(dāng)前圖形 speed(speed) 畫筆繪制的速度范圍[0,10]整數(shù)
2,畫筆屬性
down()畫筆落下,移動(dòng)時(shí)繪制圖形 up()畫筆抬起,移動(dòng)時(shí)不繪制圖形 reset()恢復(fù)所有設(shè)置 pensize(width)畫筆的寬度 pencolor(colorstring)畫筆的顏色 fillcolor(colorstring)繪制圖形的填充顏色 fill(Ture)開始 fill(False)結(jié)束 也可以color(‘color,’color’) circle(radius, extent)
繪制一個(gè)圓形,其中radius為半徑,extent為度數(shù),例如若extent為180,則畫一個(gè)半圓;如要畫一個(gè)圓形,可不必寫第二個(gè)參數(shù)
3,例子
下面一箭穿心的圖像
from turtle import * from time import sleep def go_to(x, y): up() goto(x, y) down() def big_Circle(size): #函數(shù)用于繪制心的大圓 speed(1) for i in range(150): forward(size) right(0.3) def small_Circle(size): #函數(shù)用于繪制心的小圓 speed(1) for i in range(210): forward(size) right(0.786) def line(size): speed(1) forward(51*size) def heart( x, y, size): go_to(x, y) left(150) begin_fill() line(size) big_Circle(size) small_Circle(size) left(120) small_Circle(size) big_Circle(size) line(size) end_fill() def arrow(): pensize(10) setheading(0) go_to(-400, 0) left(15) forward(150) go_to(339, 178) forward(150) def arrowHead(): pensize() speed(1) color('red', 'red') begin_fill() left(120) forward(20) right(150) forward(35) right(120) forward(35) right(150) forward(20) end_fill() def main(): pensize(2) color('red', 'pink') #getscreen().tracer(30, 0) #取消注釋后,快速顯示圖案 heart(200, 0, 1) #畫出第一顆心,前面兩個(gè)參數(shù)控制心的位置,函數(shù)最后一個(gè)參數(shù)可控制心的大小 setheading(0) #使畫筆的方向朝向x軸正方向 heart(-80, -100, 1.5) #畫出第二顆心 arrow() #畫出穿過兩顆心的直線 arrowHead() #畫出箭的箭頭 go_to(400, -300) write("author:超哥", move=True, align="left", font=("宋體", 30, "normal")) done() main()
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。