使用 turtle报错 name 'setup' is not defined
使用 turtle报错
Traceback (most recent call last):
File "turtle.py", line 1, in <module>
from turtle import *
File "E:\python\demo\turtle.py", line 2, in <module>
setup(600, 400, 0, 0)
NameError: name 'setup' is not defined
问题原因:
文件名命名为turtle.py
python的import会优先选择当前目录下的文件,找不到才去类目录去找,所以不要把文件的名字设为库名
修改方法:
将脚本文件重命名为其他的名字