Python:向字符串添加字符错误

时间:2016-11-27 14:07:54

标签: python string attributeerror

我正在创建一个伪随机加密程序,当我尝试扩展种子值时,IDLE返回并出错。代码是这样的。

for i in str(addon):
    seed = str(seed)
    seed.append(str(i))
    seed = int(seed)

当我运行时,会发生这种情况。

AttributeError: 'str' object has no attribute 'append'

关于如何将字符添加到字符串末尾的任何想法?

1 个答案:

答案 0 :(得分:1)

使用+代替append。附加用于list个对象。

seed += str(i)