python用小海龜畫糖葫蘆

2021-10-24 11:58:02 字數 957 閱讀 1995

import turtle #匯入小海龜模組

t=turtle.pen() #建立畫筆

t.penup() #提起畫筆

t.goto(20, 0) #起始座標

t.pendown() #下筆

t.begin_fill() #填充顏色

t.fillcolor(「red」)#填充紅色

t.circle(40) #畫圓半徑:40

t.end_fill() #結束填充

t.penup()

t.goto(60,40)

t.pendown()

t.begin_fill()

t.fillcolor(「blue」)

t.circle(40)

t.end_fill()

t.penup()

t.goto(100,80)

t.pendown()

t.begin_fill()

t.fillcolor(「yellow」)

t.circle(40)

t.end_fill()

t.penup()

t.goto(140,120)

t.pendown()

t.begin_fill()

t.fillcolor(「pink」)

t.circle(40)

t.end_fill()

t.penup()

t.speed(1)

t.width(5)

t.color(『orange』)

t.goto(-60,-40)

t.pendown()

t.seth(45) #45°角

t.forward(75)

turtle.done()#保持執行繪圖結果不退出

小海龜 元組 字串2

import turtle 對應不讓小海龜結束 turtle.done turtle.forward 向前 turtle.backward 向後 turtle.goto x,y 距離遠點的距離,可以抬起畫筆,到達後再落下畫筆 turtle.up 畫筆抬起 turtle.down 畫筆落下 turtl...

ubuntu16 安裝ros執行小海龜

映象選擇 為了保證安裝速度,請選擇國內映象如下 ustc映象 ros kinetic只支援wily 15.10 和xenial 16.04 對應核心分別為4.2和4.4,其他版本需要編譯安裝不支援直接deb軟體源安裝,使用下面命令 安裝功能包 sudo apt get install ros kin...

python海龜畫柱體

x int input 請輸入柱體長 y int input 請輸入柱體寬 z int input 請輸入柱體高 print 輸出以 為長,為寬,為高的柱形 format x,y,z import turtle as ts 定義畫板 ts.setx 0 ts.sety 0 ts.pensize 1 ...