我最近发现了 Python 的世界,并尝试自己自学 Python。
我有商业背景,所以对编程和计算机科学的知识几乎为零。
无论如何,我正在使用安装在 Chromebook 中的 Linux 并学习如何使用 turtle 模块来创建一个简单的游戏。
目前,我的问题是wn.title("")
and wn.bgpic
:标题不显示在窗口中,背景图像只显示一个黑色方块。
请在下面查看我的代码:
import turtle
import os
wn = turtle.Screen()
wn.bgcolor("pink")
wn.title("Turtle practice")
wn.setup(width=1000, height=1000)
wn.bgpic('/home/file path/katalk.gif')
如果有人可以帮助我解决这个问题,那就太好了。