[問題] list問題

作者: chenbigdog (gto)   2019-11-11 09:18:51
請教大家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'
這是什麼原故呢???
作者: TuCH (謬客)   2019-11-11 09:37:00
-1, -6, -5 意義不明
作者: doiverson (dodo)   2019-11-11 09:50:00
為什麼要寫這麼複雜?
作者: chenbigdog (gto)   2019-11-11 09:57:00
因為我要取這個list裡最後倒數幾個特定的數...
作者: TitanEric (泰坦)   2019-11-11 09:58:00
你先做slice再做map得到的還是list 而list不支援相減就這樣
作者: chenbigdog (gto)   2019-11-11 10:01:00
T大,那有辦法把list裡東西取出來,再加減嗎?
作者: TuCH (謬客)   2019-11-11 10:46:00
act_num = history[-1] act_num_2 = history[-6]
作者: sheep1129588 (Sheep_Cheng)   2019-11-11 10:46:00
numpy array支援elelmentwise的加減
作者: moodoa3583 (金牌台灣啤酒)   2019-11-11 10:51:00
只看描述似乎就是print(a[3] -a[2]) 嗎?
作者: chenbigdog (gto)   2019-11-11 11:01:00
謝謝各位大大熱情支援,小弟不是專科的所以問的很ooxx我試上面大大的方法及說明,讓我試出我要功能了...小弟謝謝各位熱情鄉民!!!!!!!
作者: putintostyle (阿澤)   2019-11-13 16:57:00
換成np.array(your_list)就可以做你說的向量計算

Links booklink

Contact Us: admin [ a t ] ucptt.com