請教大家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'
這是什麼原故呢???