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


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


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

turtle .dot()

此函數用於繪製具有特定大小和某種顏色的圓點。如果未指定大小,則使用pensize + 4和2 * pensize的最大值。

用法:

turtle.dot(size=None, *color)

參數:

參數 描述
size > = 1的整數(如果給出)
color 顏色字符串或數字顏色元組

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



範例1:

Python3

# import package 
import turtle 
  
  
# motion 
turtle.forward(100) 
  
# dot with 
# 60 diameter 
# yellow color 
turtle.dot(60, color="yellow")

輸出:

範例2:

Python3

# import package 
import turtle 
  
  
# delay the turtle work speed 
# for better understandings 
turtle.delay(500) 
  
# hide the turtle 
turtle.ht() 
  
# some dots with diameter and color 
turtle.dot(200, color="red") 
turtle.dot(180, color="orange") 
turtle.dot(160, color="yellow") 
turtle.dot(140, color="green") 
turtle.dot(120, color="blue") 
turtle.dot(100, color="indigo") 
turtle.dot(80, color="violet") 
turtle.dot(60, color="white") 
  
# write text 
turtle.write("GFG", align="center", 
             font=('Verdana', 12, 'bold'))

輸出:




相關用法


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