我的用于反转字符串的代码在其他网站上也可以使用,但是在我的vim上的ubuntu机器上却不可用。
UnpicklingError: invalid load key, '\x0a'.
出现错误:
wrd=input("Please enter a word ")
wrd=str(wrd)
rvs=wrd[::-1]
print(rvs)
if wrd == rvs:
print("This word is a palindrome")
else:
print("This word is not a palindrome")
答案 0 :(得分:0)
您必须使用wrd=raw_input("Please enter a word")
rvs=wrd[::-1]
print(rvs)
if wrd == rvs:
print("This word is a palindrome")
else:
print("This word is not a palindrome")
:
input
现在它可以工作,Python 2中的eval(input(...))
与Python 3中的hannah
相同,但是它将尝试查找名为hannah
的变量,而没有任何名为+
的变量。