不能导入龟

时间:2015-04-20 03:40:38

标签: python powershell turtle-graphics

我是一个完整的新手,所以我很感激答案 我正试图让我的powershell上的乌龟,因为这就是我正在阅读的书所说的,但这显示了,

import : The term 'import' is not recognized as the name of a cmdlet,function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ import turtle
+ ~~~~~~
+ CategoryInfo          : ObjectNotFound: (import:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

2 个答案:

答案 0 :(得分:2)

您不在Python解释器中。您必须通过输入命令py来启动它。然后你可以使用Python环境。

答案 1 :(得分:0)

import turtle是Python,但不是PowerShell。执行import turtle时,请确保您使用的是Python,而不是PowerShell。