Python中的 turtle.dot()函数
turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
乌龟.dot()
此函数用于绘制具有特定大小的圆形点,并带有一些颜色。如果未给出尺寸,则使用 pensize+4 和 2*pensize 的最大值。
句法 :
turtle.dot(size=None, *color)
参数:Arguments Description size an integer >= 1 (if given) color a colorstring or a numeric color tuple
以下是上述方法的实现以及一些示例:
示例 1:
Python3
# import package
import turtle
# motion
turtle.forward(100)
# dot with
# 60 diameter
# yellow color
turtle.dot(60, color="yellow")
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'))
输出 :
示例 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'))
输出 :