-2

好的,我的 TA(助教)给我发了电子邮件,告诉我我在上一篇文章中正在寻找的代码。我试图让各种字母和符号成为海龟命令。这是我当前的代码:

import turtle
command = str(input("enter a  command line"))
length = int(input("enter a length"))
angle = float(input("enter an angle"))

commandLength = len(command)
for i in range(commandLength):
if(command[i] == 'h'):

elif(command[i] == 'h'):

好的,我的 TA 正在用他的手机给我发电子邮件,所以他可能无法具体说明。但他告诉我复制“if”命令行中的所有内容,然后将“ELIF”放在它前面。当我这样做时,我得到一个“缩进错误”“期望一个缩进块”错误在我的 elif 语句所在的行上。现在认识我的任何人都知道我对编程是多么陌生。有人可以告诉我为什么我会收到错误,以及如何解决它或者我是否正确地写了这个。谢谢你。

4

1 回答 1

0
import turtle
command = str(input("enter a  command line"))
length = int(input("enter a length"))
angle = float(input("enter an angle"))

commandLength = len(command)
for i in range(commandLength):
    if(command[i] == 'h'):

    elif(command[i] == 'h'):

每个块都应该缩进。

块是:最后的一切。

于 2013-09-21T21:01:15.253 回答