當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python turtle.sety()用法及代碼示例

turtle 模塊以麵向對象和麵向過程的方式提供 turtle 圖形基元。由於它使用Tkinter作為基礎圖形,因此需要安裝有Tk支持的Python版本。

turtle .sety()

此方法用於將海龜的第二個坐標設置為y,而第一個坐標保持不變。在這裏,無論 turtle 處於什麽位置,它都會將y坐標設置為給定的輸入,而保持x坐標不變。

用法:turtle.sety(y)

參數:

y:一個數字(整數或浮點數),它是唯一一個必需的參數。



下麵是上述方法的實現和一些示例:

範例1:

Python3

# import package 
import turtle 
  
  
# check the turtle position 
print(turtle.position()) 
  
# set the y coordinate 
turtle.sety(30) 
  
# check the turtle position 
print(turtle.position()) 
  
# set the y coordinate 
turtle.sety(-50) 
  
# check the turtle position 
print(turtle.position())

輸出:

(0.0, 0.0)
(0.0, 30.0)
(0.0, -50.0)

範例2:

Python3

# import package 
import turtle 
  
# loop for pattern 
for i in range(4):
    
  # motion 
  turtle.forward(100) 
  turtle.right(90) 
  turtle.forward(20) 
  turtle.right(90) 
  turtle.forward(100) 
    
  # set the y cordinate  
  turtle.up() 
  turtle.sety(-40*(i+1)) 
  turtle.down() 
    
  # change the direction 
  turtle.left(180)

輸出:




相關用法


注:本文由純淨天空篩選整理自deepanshu_rustagi大神的英文原創作品 turtle.sety() function in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。