Open In App

turtle.window_width() function in Python

Last Updated : 26 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support.

turtle.window_width()

This function is used to return the width of the turtle window. It doesn’t require any argument.

Syntax :

turtle.window_width()

Below is the implementation of the above method with an example :

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


Output :

768
300
500


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads