Can't import turtle module in Python 2.x and Python 3.x

后端 未结 7 1782
时光取名叫无心
时光取名叫无心 2021-01-02 14:16

I want to play with turtle module in Python. But when i do import turtle module, i\'ve the following error:

$ python
Python 2.7.3 (default, Sep 26 2012, 21:5         


        
7条回答
  •  旧时难觅i
    2021-01-02 15:06

    You've called a script turtle.py, which is shadowing the turtle module in the standard library. Rename it.

提交回复
热议问题