0

为什么这不起作用?

reflace=0
input = "55,1,1,1".split(",")

# Now find the first field from comma
input[reflace] = round( float( input[reflace] ) , 2) + 0.01
ranges = [(-1,1)]
if any(lower <= input[reflace] <= upper for (lower, upper) in ranges):
  print "+ " + input

不打印

4

1 回答 1

0

将字符串的名称从更改为input其他名称。我正在使用inputData.

reflace=0
inputData = "55,1,1,1".split(",")
# Now find the first field from comma
inputData[reflace] = round( float( inputData[reflace] ) , 2) + 0.01

print inputData[reflace] ### Will print 55.01

ranges = [(-1,1)]
if any(lower <= inputData[reflace] <= upper for (lower, upper) in ranges):
  print "+ " + inputData

因此,您正在检查 55.01 是否在 -1、1 的范围内。这不是真的。这就是为什么什么都没有打印出来的原因。

于 2013-10-24T05:55:28.843 回答