Python中的turtle.window_height()函数

Python中的turtle.window_height()函数

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

turtle.window_height()

这个函数用来返回Turtle窗口的高度。它不需要任何参数。

语法 :

turtle.window_height()

下面是上述方法的实现,并附有一个例子。

# import package
import turtle
  
# get turtle window height
print(turtle.window_height())
  
# make screen object
# then set size and color
sc = turtle.Screen()
sc.setup(300,300)
sc.bgcolor("green")
  
# get turtle window height
print(turtle.window_height())
  
# loops for pass time
for i in range(5000):
  for j in range(5000):
    pass
  
# set size and color again
sc.setup(500,400)
sc.bgcolor("red")
  
# get turtle window height
print(turtle.window_height())

输出 :

Python中的turtle.window_height()函数

648
300
400

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Python Turtle