可以使用from turtle import setup引入turtle库
时间: 2024-06-05 14:09:48 浏览: 69
Python使用turtle库绘制小猪佩奇(实例代码)
5星 · 资源好评率100%
是的,可以使用 `from turtle import setup` 来引入turtle库。不过,这样只能导入其中的setup函数,而不能使用其他turtle库的函数。如果您需要使用其他函数,可以使用 `import turtle` 或 `from turtle import *` 导入整个turtle库。
阅读全文