这是我的代码
<g:link controller="simpleExcel" action="downloadSampleExcel"
params="[s: 'RAF']">Download Sample Excel</g:link>
这是mapobject,所以我试过这样的事情
def fahrenheit(T):
return ((float(9)/5)*T + 32)
temp = [0, 22.5, 40,100]
F_temps = map(fahrenheit, temp)
我不确定,但我认为我的解决方案可以用Python 2.7,如何用3.5改变它?
答案 0 :(得分:23)
您必须先将地图转换为列表或元组。为此,
print(list(F_temps))