有关Python中的division问题

笔者在学习Natural Language Processing with PythonChapter2的过程中,在运行如下代码的时候生成结果和书中示例不同:

import nltk

def content_fraction(text):
    stopwords = nltk.corpus.stopwords.words('english')
    content = [w for w in text if w.lower() not in stopwords]
    return len(content)/len(text)

print content_fraction(nltk.corpus.reuters.words())

返回结果本应为0.735240435097661,实际返回0。说明是在除法运算的过程中,因为被除数为int型,所以结果发生了截断,可将return len(content)/len(text)语句改为return len(content)/float(len(text)),运行结果正确。
同时在查看stackoverflow的时候,有人给出了建议,在代码最前面添加from __future__ import division即可,后面就不需要特别注释float型。
同时我也产生了一个疑问,为什么要用future呢,stackoverflow中也有人给了详细的解释:

You’re using Python 2.x, where integer divisions will truncate instead of becoming a floating point number.

笔者用的正是Python2.7,于是换成Python3.4,直接运行原代码仍然报错。原来Python3.4对于print语句进行了格式上的修改。将最后一句修改为print (content_fraction(nltk.corpus.reuters.words())),也就不再报错了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值