标签: python list slice
a = [0, 1, 2, 3] for a[-1] in a: print(a[-1])
因此,输出为 0 1个 2 2
a [-1]在迭代中如何变化? 为什么不输出3333,因为每次迭代的最后一个元素是3。