标签: python list append nested-lists
t = [ [1,22] , [1,44] ]# nested list list1 = t.append( [0,0] ) print list1
我希望结果为[[1,22],[1,44],[0,0]]。但输出总是“无”。我该怎么办?
答案 0 :(得分:1)
append()方法修改了列表,返回值为None。只需查看t,您就会看到附加的项目。
append()
t
t = [ [1,22] , [1,44] ]# nested list t.append( [0,0] ) print t