在学习 turtle 模块的时候跟着书中的代码写个猫捉老鼠的游戏实验然后遇到下面的 erro。。。查了文档也没有解决。
我的 python 版本是 2.7
Traceback (most recent call last): File "cat.py", line 50, in <module> window.onkeypress(up, "Up") AttributeError: '_Screen' object has no attribute 'onkeypress'
1
Sylv 2017-06-03 02:38:24 +08:00 via iPhone
|
2
wevsty 2017-06-03 02:42:19 +08:00
提示很清楚_Screen 对象没有 onkeypress 属性.
看上去你是想使用 turtle.onkey ? 使用方法见文档 https://docs.python.org/2/library/turtle.html 另外既然是新学习,为什么不学 python3 ? |