我刚刚开始了一个可以编码消息的编码项目。尝试使用 if 和 elif 函数时,无论我尝试用什么结束 if 函数,repl.it 都会返回错误。
代码:
ConvertString = input("Enter a string: ")
StringList = list(ConvertString)
print (StringList)
for x in list(range(len(StringList))
if StringList[x] == "a":
print("Letter found: a")
elif StringList[x] == "b"
print("Letter found: b")
elif StringList[x] == "c"
print("Letter found: c")
elif StringList[x] == "d"
print("Letter found: d")
elif StringList[x] == "e"
print("Letter found: e")
elif StringList[x] == "f"
print("Letter found: f")
x += 1
一只甜甜圈
相关分类