Raspberry pi python divide产生整数

时间:2015-11-11 22:59:46

标签: python raspberry-pi divide

我希望你能帮助我。我在Raspberry Pi上使用python进行编码,我使用pycharm起草代码然后复制。我试图以0.01步计数从1.00到2.00。这是我的代码:

 <input type="file" name="files[]" id="image-file" multiple />
 <label class="file-button" for="image-file" >
    <img src="img/upload.png" alt="add"> Upload Your File(s)
 </label>

在pycharm中,它给出了预期的响应

  

1.01,   1.02,   1.03 ...

在RPi上,这给出了:

  

1,1,   1 ...

知道为什么吗?我正在撕开我的头发。

1 个答案:

答案 0 :(得分:1)

两种环境都可能使用不同版本的Python。

Python3上的整数除法返回一个浮点数,而Python2中的整数除法将返回一个整数。

将你的分母转换为浮点数,使它是一个整数/浮点除法,并在两个Python版本中返回一个浮点数:

i /= 100.0