标签: python python-2.7
如何得到一个浮点数列表,其中分子为1,分母为range(1, 1000)我的代码只返回一个全零列表
range(1, 1000)
x = list(range(1,1000)) aList = [1/d for d in x] print(aList)
答案 0 :(得分:2)
操作1/d执行整数除法,而不是浮点除法。
1/d
改为使用1.0/d。
1.0/d