当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python turtle.fillcolor()用法及代码示例


turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。

turtle .fillcolor()

此方法用于返回或设置填充颜色。如果turtleshape是多边形,则使用新设置的fillcolor绘制该多边形的内部。

用法:turtle.fillcolor(*args)

参数:

  • fillcolor():返回当前的fillcolor作为颜色说明字符串,可能为hex-number格式。
  • fillcolor(colorstring):它是Tk颜色规范字符串,例如“red”或“yellow”。
  • fillcolor((r,g,b)):r,g和b的元组代表RGB颜色,并且r,g和b的每个都在0到colormode的范围内
  • fillcolor(r,g,b):r,g和b表示RGB颜色,并且r,g和b的范围均为0到colormode。

下面是上述方法的实现和一些示例:

范例1:



Python3

# importing package 
import turtle 
  
# set turtle 
turtle.shape("turtle") 
turtle.turtlesize(3,3,1) 
  
# check by default value 
print(turtle.fillcolor()) 
  
# set blue color 
turtle.fillcolor("blue") 
  
# check fillcolor value 
print(turtle.fillcolor())

输出:

black
blue

范例2:

Python3

# importing package 
import turtle 
  
# method to draw a star 
def star():
    for i in range(5):
        turtle.forward(60) 
        turtle.right(144) 
  
# method to set position 
# and fill color in star 
def draw(x,y,col):
    turtle.up() 
    turtle.setpos(x,y) 
    turtle.down() 
    turtle.fillcolor(col) 
    turtle.begin_fill() 
    star() 
    turtle.end_fill() 
  
# Driver Code 
draw(-100,0,"red") 
draw(-50,0,"yellow") 
draw(0,0,"blue") 
draw(50,0,"green") 
  
# hide the turtle 
turtle.hideturtle()

输出:




相关用法


注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.fillcolor() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。