标签: python
我想对列表Python进行数学运算,假设我有一个列表:
my_list = [1, 4, 8, 9]
如何生成一个包含列表连续元素之间差异的新列表?结果:
new_list = [1, 3 , 4, 1]