我是python的初学者。
有人能解释一下这段代码是什么意思吗?
harvest["year"] = harvest.index.year
harvest["DM"] = harvest["N"] = 0.
harvest
、year
、DM
和N
是数据和数据变量。这里0.
是什么意思? 最佳答案
>>> type(0)
<class 'int'>
>>> type(0.)
<class 'float'>
它只是确保在仍然为“零”的情况下,结果是afloat instead of an int。
关于python - 0.在Python中是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58523627/