Python中的 turtle.window_width()函数
turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
海龟.window_width()
该函数用于返回海龟窗口的宽度。它不需要任何论据。
句法 :
turtle.window_width()
下面是上述方法的一个例子的实现:
Python3
# import package
import turtle
# get turtle window width
print(turtle.window_width())
# make screen object
# then set size and color
sc = turtle.Screen()
sc.setup(300,300)
sc.bgcolor("green")
# get turtle window width
print(turtle.window_width())
# 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 width
print(turtle.window_width())
输出 :
768
300
500