在嵌套列表:如何從嵌套列表中刪除連字符?
x = [['0', '-', '3', '2'], ['-', '0', '-', '1', '3']]
我怎麼刪除連字符?
x = x.replace("-", "")
給我AttributeError: 'list' object has no attribute 'replace'
,並
print x.remove("-")
給我ValueError: list.remove(x): x not in list
。
Python是實際記錄:http://docs.python.org/library/stdtypes.html#typesseq-mutable – jogojapan 2012-04-25 03:37:30
編輯以更好地解釋我的難題:P – 2012-04-25 03:45:42