a= [6248.570994, 5282.059503, 5165.000653, 5130.795058, 5099.376451]
一個辦法:如何轉換浮動名單蟒蛇爲int列表
a=map(int, a)
的其他方式:
int_a=[]
for intt in a:
int_a.append(int(intt))
以上幾種方式可以打印正確的答案,但是當我要排序的我遇到問題:
maxx=sorted(int_a,reverse=True)[:1]*1.2
print maxx
TypeError: can't multiply sequence by non-int of type 'float'
這是您使用 – felipsmartins
哪個版本的Python對我的作品? – NightShadeQueen
你可以把完整的追溯? –