first, second, third, last =(input("test ")).split()
print("{0:s}{1:s}{2:s}{3:s}".format(last, third, second, first)))
User_guess=[0,0,0,0]
print(first)
User_guess.append[0]=first
first, second, third, last =(input("test ")).split()
print("{0:s}{1:s}{2:s}{3:s}".format(last, third, second, first)))
User_guess=[0,0,0,0]
print(first)
User_guess.append[0]=first
User_guess.append[0]=first
。 。 。 (我很累,不知道要修理什么) 。 。 fYi,变量User_guess链接到受此影响的代码的不同部分。但另一部分不会影响这一点。
答案 0 :(得分:1)
User_guess
已经是4个元素的列表,因此无需使用append()
。使用User_guess[0]=first
将变量first
存储到User_guess
列表的第0个元素中。