Python中的turtle.dot()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.dot()
这个函数用来画一个具有特定尺寸的圆点,并带有某种颜色。如果没有给出尺寸,则使用pensize+4和2*pensize的最大值。
语法 :
turtle.dot(size=None, *color)
参数:
参数 | 描述 |
---|---|
size | 一个>=1的整数(如果给定)。 |
color | 一个颜色字符串或一个数字颜色元组 |
下面是上述方法的实现和一些例子。
例子1 :
# import package
import turtle
# motion
turtle.forward(100)
# dot with
# 60 diameter
# yellow color
turtle.dot(60, color="yellow")
输出 :
例子2 :
# 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'))
输出 :