gpt4 book ai didi

python - 我在此if/else语句上的语法有什么问题?

转载 作者:行者123 更新时间:2023-12-03 08:14:30 25 4
gpt4 key购买 nike

尝试在Python 2.7上编写简单的加密程序时遇到一个非常令人沮丧的错误。基本上,它通过说我的语法无效来拒绝if/else语句,并且我不知道我做错了什么。 if高亮显示为if输入==“1”:语句中的:是不正确的。

    #Main menu function, directs user to an operation
def menu():
input = raw_input("Type 1 for encryption, 2 for decryption, or 3 for information."
if input == "1":
print "Encryption selected..."
encrypt()
elif input == "2":
print "Decryption selected..."
decrypt()
elif input == "3":
print "Loading info..."
info()
else:
print "ERROR: INVALID INPUT"
menu()

最佳答案

您在raw_input()行的末尾缺少右括号吗?

更改

input = raw_input("Type 1 for encryption, 2 for decryption, or 3 for information."


input = raw_input("Type 1 for encryption, 2 for decryption, or 3 for information.")

关于python - 我在此if/else语句上的语法有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20270611/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com