📜  Python中的 turtle.undobufferentries()函数

📅  最后修改于: 2022-05-13 01:55:43.816000             🧑  作者: Mango

Python中的 turtle.undobufferentries()函数

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

turtle.undobufferentries()

此函数用于返回 undobuffer 中的条目计数。它不需要任何论据。

句法 :

turtle.undobufferentries()

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# 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())


Python3
# 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()


输出 :

100

示例 2:

Python3

# 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()

输出 :