附加时列表不再被识别为列表

时间:2016-01-11 06:43:55

标签: python-2.7

为什么第二个陈述打印出来"无"?不应该只是将列表变量loe识别为列表,只需在列表中追加一个吗?毕竟,第一个print语句确实将loe识别为列表。

loe = ["a", "b"]
one = "c"
print "List of elements: ", loe
print "List of elements and one: ", loe.append(one)

------------
Output:
List of elements:  ['a', 'b']
List of elements and one:  None

1 个答案:

答案 0 :(得分:1)

list.append()没有返回值。所以你有