源代码:from turtle import *code analysis:'from turtle import *' used; unable to detect undefined names
导入方式改一下,改成需要什么导入什么,而不是导入所有, 例如:
from turtle import xxx
或者
import turtle