如何用python读取excel文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用python读取excel文件相关的知识,希望对你有一定的参考价值。

以下代码调试通过:

import xlrd
# 打开 xls 文件
book = xlrd.open_workbook("test.xls")
print "表单数量:", book.nsheets
print "表单名称:", book.sheet_names()
# 获取第1个表单
sh = book.sheet_by_index(0)
print u"表单 %s 共 %d 行 %d 列" % (sh.name, sh.nrows, sh.ncols)
print "第二行第三列:", sh.cell_value(1, 2)

运行效果:

参考技术A import xlrd, xlutils
from xlrd import open_workbook
from xlutils.copy import copy
from xlutils.filter import process,XLRDReader,XLWTWriter

def copy2(wb):
    w = XLWTWriter()
    process(
        XLRDReader(wb,'unknown.xls'),
        w
        )
    return w.output[0][1], w.style_list

inBook = xlrd.open_workbook(r"Book1.xls", formatting_info=True, on_demand=True)
inSheet = inBook.sheet_by_index(0)

# Copy the workbook, and get back the style
# information in the `xlwt` format
outBook, outStyle = copy2(inBook)

# Get the style of _the_ cell:    
xf_index = inSheet.cell_xf_index(0, 0)
saved_style = outStyle[xf_index]

saved_style.font.colour_index = 11

#Update the cell, using the saved style as third argument of `write`:
outBook.get_sheet(0).write(0,0,'changed!', saved_style)
outBook.save(r"Book2.xls")

参考技术B 可以通过pip包管理器来安装Python包,但是pygame包包含C语言代码,需要进行编译。

如何用python读取json文件里指定的数据

JSON文件who.json内容如下:

"name": "mss",
"version": "1.0.0",
"description": "Policy issue system",
"main": "app.js",
"scripts":
"dev": "pm2 reload processes.json --env dev",
"test": "pm2 reload processes.json --env test",
"pro": "pm2 reload processes.json",
"start": "node app.js "
,
"keywords": [
"service",
"mss",
"microService"
],
"author": "who@163.com ",
"license": "Apache-2.0",
"dependencies":
"ab": "^2.0.0",
"ae": "^6.1.0",
"af": "^0.16.2",
"co-mysql": "^1.0.0",
"ca": "0.0.3",
"date-utils": "^1.2.21",
"exc": "^0.5.1",
"pgtool": "^7.8.1"



如果通过python读取这个json里"dependencies"里所包含的数据,并进行罗列,将数据转换成:"ab": "^2.0.0"转换成ab@^2.0.0这样的格式?
如有大神回答,请尽量详细,我是python初学者一个。

参考技术A import json

with open('who.json', 'r') as f:
    data = json.load(f)
    dependencies = data['dependencies']
    for k, v in dependencies.iteritems():
        print(f'k@v')

追问

大佬,请问如何对不同目录下的多个who.json进行读取呢?

追答

把所有目录名放到列表里,遍历列表重复上述操作。

本回答被提问者采纳

以上是关于如何用python读取excel文件的主要内容,如果未能解决你的问题,请参考以下文章

如何用python读取excel文件

如何用python读取arcgis中shapefile文件的属性表?可以输出为excel格式吗

如何用PHPExcel读取超大excel文件

如何用asp读取excel文件

如何用java读取excel文件

如何用python读取arcgis中shapefile文件的属性表?可以输出为excel格式吗