append string to list/string returns 'None' or 'AttributeError: 'str' object has no attribute 'append'' in python
append string to list/string returns 'None' or 'AttributeError: 'str' object has no attribute 'append'' in python
我正在尝试在句子 'Afterall , what affects one family ' 的后面添加 1 word/string。
使用 append 方法,如果我直接追加到列表,它将 returns 'None' 或者如果我追加到列表,它将 return 一个错误 'AttributeError'细绳。我可以知道如何在句子后面添加 word/string 吗?
S1 = 'Afterall , what affects one family '
Insert_String = 'member'
S1_List = ['Afterall', ',', 'what', 'affects', 'one', 'family']
print(type(S1_List))
print(type(Insert_String))
print(type(S1))
print(S1_List)
print(Insert_String)
print(S1)
print(S1_List.append(Insert_String))
print(S1.append(Insert_String))
Output
<type 'list'>
<type 'str'>
<type 'str'>
['Afterall', ',', 'what', 'affects', 'one', 'family']
member
Afterall , what affects one family
None
AttributeErrorTraceback (most recent call last)
<ipython-input-57-2fdb520ebc6d> in <module>()
11
12 print(S1_List.append(Insert_String))
---> 13 print(S1.append(Insert_String))
AttributeError: 'str' object has no attribute 'append'
这里的区别在于,在 Python 中,“列表”是可变的,而“字符串”不是——它不能更改。 “list.append”操作修改了列表,但 returns 什么也没有。所以,试试:
S1_List.append(Insert_String)
print(S1_List)
print(S1 + Insert_String)
字符串数据类型是不可变的,并且没有 append()
方法。您可以尝试执行字符串连接:
old_string = old_string + new_string
我正在尝试在句子 'Afterall , what affects one family ' 的后面添加 1 word/string。
使用 append 方法,如果我直接追加到列表,它将 returns 'None' 或者如果我追加到列表,它将 return 一个错误 'AttributeError'细绳。我可以知道如何在句子后面添加 word/string 吗?
S1 = 'Afterall , what affects one family '
Insert_String = 'member'
S1_List = ['Afterall', ',', 'what', 'affects', 'one', 'family']
print(type(S1_List))
print(type(Insert_String))
print(type(S1))
print(S1_List)
print(Insert_String)
print(S1)
print(S1_List.append(Insert_String))
print(S1.append(Insert_String))
Output
<type 'list'>
<type 'str'>
<type 'str'>
['Afterall', ',', 'what', 'affects', 'one', 'family']
member
Afterall , what affects one family
None
AttributeErrorTraceback (most recent call last)
<ipython-input-57-2fdb520ebc6d> in <module>()
11
12 print(S1_List.append(Insert_String))
---> 13 print(S1.append(Insert_String))
AttributeError: 'str' object has no attribute 'append'
这里的区别在于,在 Python 中,“列表”是可变的,而“字符串”不是——它不能更改。 “list.append”操作修改了列表,但 returns 什么也没有。所以,试试:
S1_List.append(Insert_String)
print(S1_List)
print(S1 + Insert_String)
字符串数据类型是不可变的,并且没有 append()
方法。您可以尝试执行字符串连接:
old_string = old_string + new_string