编程语言
首页 > 编程语言> > Python .xlsx(Office OpenXML)阅读器和csv模块一样简单吗?

Python .xlsx(Office OpenXML)阅读器和csv模块一样简单吗?

作者:互联网

我知道一些Python xlsx读者正在兴起,但从我看到它们看起来并不像内置的csv模块那么直观.

我想要的是一个可以做这样的事情的模块:

reader = xlsx.reader(open('/path/to/file'))

for sheet in reader:
    print 'In %s we have the following employees:' % (sheet.name)
    for row in sheet:
        print '%s, %s years old' % (row['Employee'], row['Age'])

有这样的读者吗?

解决方法:

xlrd具有xlsx处理基本数据提取,使用与xls相同的API,目前在alpha测试中.如果有兴趣,请给我发私人电子邮件.

标签:xlsx,xmlreader,python,module,openxml
来源: https://codeday.me/bug/20190827/1740138.html