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 packageimport turtle # set the background color# of the turtle screenturtle.Screen().bgcolor("orange") # move turtleturtle.forward(100) |
Output :
Example 2 :
Python3
# importing packageimport turtle # set the background color# of the turtle screenturtle.Screen().bgcolor(0,0,255) # move turtleturtle.forward(100) |
Output :

