Monday, October 27, 2025
HomeLanguagesturtle.Screen().bgcolor() function in Python

turtle.Screen().bgcolor() function in Python

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.Screen().bgcolor()

This method is used to set or return background color of the Turtle Screen.

Syntax:

turtle.bgcolor(*args)

Parameters:

Format                              Argument                     Description                              
bgcolor(“color”) color string of color name
bgcolor(r, g, b) r, g, b rgb color code values

Below is the implementation of the above method with some examples :

Example 1 :

Python3




# importing package
import turtle
  
# set the background color
# of the turtle screen
turtle.Screen().bgcolor("orange")
  
# move turtle
turtle.forward(100)


Output :

Example 2 :

Python3




# importing package
import turtle
  
# set the background color
# of the turtle screen
turtle.Screen().bgcolor(0,0,255)
  
# move turtle
turtle.forward(100)


Output :

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS