📜  如何在 python turtle 中更改背景颜色 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:05.641000             🧑  作者: Mango

代码示例1
import turtle
wn=turtle.Screen()
wn.bgcolor("black")
wn.title("This is my screen title!")