Python中的turtle.undobufferentries()函数

Python中的turtle.undobufferentries()函数

turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。

turtle.undobufferentries()

该函数用于返回undobuffer中的条目数。它不需要任何参数。

语法 :

turtle.undobufferentries()

下面是上述方法的实现和一些例子。

例子1 :

# import package
import turtle
  
# loop for motion
for i in range(50):
    turtle.forward(20+2*i)
    turtle.right(90)
  
# check the undo buffer size
# it is loop iteration*turtle's statement
# i.e; 50*2 = 100
print(turtle.undobufferentries())

输出 :

100

例子2 :

# import package
import turtle
  
# loop for motion
for i in range(50):
    turtle.forward(20+2*i)
    turtle.right(90)
  
# call undo() method till the 
# undobuffer length
while turtle.undobufferentries():
    turtle.undo()

输出 :

Python中的turtle.undobufferentries()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Python Turtle