我想将“new_str”添加到另一个列表中的列表中。这是我的代码:
>>>l = ['some_str', ['some_new_str']]
>>>print l
['some_str', ['some_new_str']]
>>>l1 = l[1].append('new_str')
>>>print l1
None
l[1].append('new_str')
它没有将新字符串添加到其他列表中的列表中,而是打印输出“无”。
那么如何在 python 2.7 的其他列表中添加一个字符串?
注意:输出应如下所示: ['some_str', ['some_new_str', 'new_str']]
谢谢。