请教大家list问题
若a = [1,2,3,4]
我现在要把第3个数和第4个数相减
并print出来
该如何做????
我会把值取出来
但相减会出现错误讯息
我该如何做呢?
我的程式码片断是...
act_num=history_1[len(history_1)-1:len(history_1)]
act_num_2=history_1[len(history_1)-6:len(history_1)-5]
print('act:',map(float,act_num_2)-map(float,act_num))
结果跑出
Traceback (most recent call last):
File "C:\Users\Administrator\Desktop\str\time_test.py", line 101, in
<module>
print('act:',map(float,act_num_2)-map(float,act_num))
TypeError: unsupported operand type(s) for -: 'list' and 'list'
这是什么原故呢???