为什么不能使用from turtle import setup引入turtle库
时间: 2024-01-26 19:02:18 浏览: 118
Python使用turtle库绘制小猪佩奇(实例代码)
5星 · 资源好评率100%
这是因为在Python 3.x版本中,turtle库已经成为标准库之一,可以直接使用import turtle来导入。而from turtle import setup是turtle库中的一个函数,只有在Python 2.x版本中才可以使用。在Python 3.x版本中,如果使用from turtle import setup将会抛出ModuleNotFoundError异常。
阅读全文