scripts 1:
import turtle
turtle.Screen().bgcolor(‘red’)
scripts 2:
import turtle
turtle.bgcolor(‘red’)
For both scripts get the same result. So what is the difference between turtle.Screen().bgcolor() and turtle.bgcolor()? which is the proper way to use?
Thanks.