执行下列语句,将输出:
list1=['b','c',1,2,3,4,5] list1.append('a') print(list1)
['b', 'c', 1, 2, 3, 4, 5, 'a']
无任何输出
b
['b','c',1,2,3,4,5]