Python turtle告訴龜的狀態

2021-09-24 21:16:43 字數 1529 閱讀 2285

turtle.position()

turtle.pos()

返回烏龜的當前位置(x,y)(作為vec2d向量)。

turtle.pos()

(440.00,-0.00)

turtle.towards(x,y =無)

引數x - 乙個數字或一對/數字向量或乙個烏龜例項

y - 如果x是數字,則為數字,否則none

返回從烏龜位置到由(x,y),向量或其他烏龜指定的位置的線之間的角度。這取決於龜的起始方向,取決於模式 - 「標準」/「世界」或「標誌」)。

turtle.goto(10, 10)

turtle.towards(0,0)

225.0

turtle.xcor()

返回烏龜的x座標。

turtle.home()

turtle.left(50)

turtle.forward(100)

turtle.pos()

(64.28,76.60)

print turtle.xcor()

64.2787609687

turtle.ycor()

返回烏龜的y座標。

turtle.home()

turtle.left(60)

turtle.forward(100)

print turtle.pos()

(50.00,86.60)

print turtle.ycor()

86.6025403784

turtle.heading()

返回烏龜的當前標題(值取決於烏龜模式,請參閱 mode())。

turtle.home()

turtle.left(67)

turtle.heading()

67.0

turtle.distance(x,y =無)

引數x - 乙個數字或一對/數字向量或乙個烏龜例項

y - 如果x是數字,則為數字,否則none

以烏龜步長單位返回從烏龜到(x,y),給定向量或給定其他烏龜的距離。

turtle.home()

turtle.distance(30,40)

50.0

turtle.distance((30,40))

50.0

joe = turtle()

joe.forward(77)

turtle.distance(joe)

77.0

python龜庫 Python turtle海龜庫

turtle庫是python語言中乙個很流行的繪製影象的函式庫。在乙個橫軸為x 縱軸為y的座標系原點,0,0 位置開始,想象乙隻面朝x軸正方向小烏龜,它根據一組函式指令的控制,在這個平面座標系中移動,從而在它爬行的路徑上繪製了圖形。標頭檔案import turtle turtle繪圖的基礎知識 1....

Python turtle色彩控制

turtle.pencolor args 返回或設定pencolor。允許四種輸入格式 pencolor 將當前的pencolor返回為顏色規範字串或元組 參見示例 可用作另一種顏色 pencolor fillcolor呼叫的輸入。pencolor colorstring 設定pencolor到co...

Python Turtle視窗控制

turtle.bgcolor args 引數args 顏色字串或0 colormode範圍內的三個數字或此類數字的3元組 設定或返回turtlescreen的背景顏色。screen.bgcolor orange screen.bgcolor orange screen.bgcolor 800080 ...