PyCharm:找不到参考' xxx' in' turtle.py'

时间:2017-07-18 16:22:08

标签: python reference pycharm

我尝试用内置的lib龟画一个五角星。

环境:

  • Windows 10
  • Python 3.5
  • PyCharm Community Edition 2017.1.5

代码:

import turtle


turtle.fillcolor('red')
turtle.begin_fill()
while True:
    turtle.forward(200)
    turtle.right(144)
    if abs(turtle.pos()) < 1:
        break
turtle.end_fill()

乌龟的所有方法,包括&#39; fillcolor&#39;,&#39; begin_fill&#39;,&#39; forward&#39;,&#39; right&#39;和& #39; pos&#39;等由PyCharm警告&#34;无法找到参考&#39; xxx&#39;在&#39; turtle.py&#39;&#34;并且这些方法的自动完成失败以及警告。但奇怪的是,脚本可以按预期正常运行。

我已经搜索了SO的答案,并且有一些相关的问题,但实际上并不相同:

  1. 无法找到参考&#39; xxx&#39;在&#39; __ init __。py&#39;
  2. 未解决的参考&#39; print&#39;
  3. 上述问题的所有答案都无法解决这个问题。

    根据第一批评论和答案,提供了更多信息如下:

    • 我几乎相信我在Python 3.x中使用了turtle,因为我的笔记本电脑中只有一个turtle.py文件,位于C:\ Python35 \ Lib&#39;下面。顺便说一句,如果我仍然可以使用turtle for Python 2.x,我该如何检查这些信息以及如何在默认目录中更新这个内置库?
    • 我几乎相信我没有使用virtualenv,而我的proj的解释器是Python 3.5.2

    (不幸的是,我仍然无法上传图片)

1 个答案:

答案 0 :(得分:2)

问题出在\ Lib \ turtle.py。

魔术变量全部定义如下:

__all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
           _tg_utilities + ['Terminator']) # + _math_functions)

PyCharm在扫描包时不执行此代码。因此PyCharm无法定义哪些函数可以在模块级中使用。

所以你可以改变turtle.py:

# __all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
#            _tg_utilities + ['Terminator']) # + _math_functions)
__all__ = ['ScrolledCanvas', 'TurtleScreen', 'Screen', 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D', 'back',
           'backward', 'begin_fill', 'begin_poly', 'bk', 'addshape', 'bgcolor', 'bgpic', 'bye', 'clearscreen',
           'colormode', 'delay', 'exitonclick', 'getcanvas', 'getshapes', 'listen', 'mainloop', 'mode', 'numinput',
           'onkey', 'onkeypress', 'onkeyrelease', 'onscreenclick', 'ontimer', 'register_shape', 'resetscreen',
           'screensize', 'setup', 'Terminator', 'setworldcoordinates', 'textinput', 'title', 'tracer', 'turtles',
           'update', 'window_height', 'window_width', 'write_docstringdict', 'done', 'circle', 'clear', 'clearstamp',
           'clearstamps', 'clone', 'color', 'degrees', 'distance', 'dot', 'down', 'end_fill', 'end_poly', 'fd',
           'fillcolor', 'filling', 'forward', 'get_poly', 'getpen', 'getscreen', 'get_shapepoly', 'getturtle', 'goto',
           'heading', 'hideturtle', 'home', 'ht', 'isdown', 'isvisible', 'left', 'lt', 'onclick', 'ondrag', 'onrelease',
           'pd', 'pen', 'pencolor', 'pendown', 'pensize', 'penup', 'pos', 'position', 'pu', 'radians', 'right', 'reset',
           'resizemode', 'rt', 'seth', 'setheading', 'setpos', 'setposition', 'settiltangle', 'setundobuffer', 'setx',
           'sety', 'shape', 'shapesize', 'shapetransform', 'shearfactor', 'showturtle', 'speed', 'st', 'stamp', 'tilt',
           'tiltangle', 'towards', 'turtlesize', 'undo', 'undobufferentries', 'up', 'width', 'write', 'xcor', 'ycor']

你也可以使用Turtle类:

T = turtle.Turtle()
T.fillcolor('red')
etc