📜  Python中的 turtle.window_height()函数

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

Python中的 turtle.window_height()函数

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

海龟.window_height()

该函数用于返回海龟窗口的高度。它不需要任何论据。

句法 :

turtle.window_height()

下面是上述方法的一个例子的实现:

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


输出 :

648
300
400