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


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


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

turtle .circle():

此方法用于绘制具有给定半径的圆。

 用法: turtle.circle(radius, extent=None, steps=None)

Parameters: 

  • radius:圆的半径。
  • extent:圆的度数,以弧为单位。
  • steps:将形状划分为相等数量的给定步骤。

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



范例1:

Python3

# importing turtle package 
import turtle 
  
# draw circle of radius  
# 80 pixel 
turtle.circle(80)

输出

Draw circle of radius 80

范例2:

Python3

# importing turtle package 
import turtle 
  
# draw circle of radius 80  
# pixel and extent = 180 
# so it draw half circle 
turtle.circle(80,  
              extent = 180)

输出

draw a semi circle of radius 80

范例3:

Python3

# importing turtle package 
import turtle 
  
# draw circle of radius 80 
# pixel and steps = 5 
# so it draw pentagon with 
# equal length 5 sides 
turtle.circle(80,  
              steps = 5)

输出:

Draw regular pentagon




相关用法


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