PyCharm 不能识别 turtle 库解决

最近在学习 Python,用的 PyCharm,在学到 Python 基本图形绘制时,调用库函数 turtle 时,发现 PyCharm 无法自动识别 turtle 库,也没有函数智能提示,函数下面的下划线对于强迫症患者不怎么友好
PyCharm 不能识别 turtle 库解决_第1张图片
解决方法:

打开 Python 安装路径下的lib库,找到turtle.py文件(turtle 库是 Python 标准库),用编辑器打开

  1. 注释掉下面这两行:
#__all__ = (_tg_classes + _tg_screen_functions + _tg_turtle_functions +
#           _tg_utilities + ['Terminator']) # + _math_functions)
  1. 在后面追加下面代码:
__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']
  1. 保存退出,重新查看 turtle 库函数,发现已经能正常识别,而且可以智能提示
    .PyCharm 不能识别 turtle 库解决_第2张图片

你可能感兴趣的:(项目实践)