python使用pandas读xlsx文件的实现
作者:生活甜甜好运连连 时间:2021-01-21 05:00:10
使用pandas读xlsx文件
读取前n行数据
读取指定数据(指定行指定列)
获取文件行号和列标题
将数据转换为字典形式
import pandas as pd
#1.读取前n行所有数据
df1=pd.read_excel('d1.xlsx')#读取xlsx中的第一个sheet
data1=df1.head(10)#读取前10行所有数据
data2=df1.values#list【】 相当于一个矩阵,以行为单位
#data2=df.values() 报错:TypeError: 'numpy.ndarray' object is not callable
print("获取到所有的值:\n{0}".format(data1))#格式化输出
print("获取到所有的值:\n{0}".format(data2))
#2.读取特定行特定列
data3=df1.iloc[0].values#读取第一行所有数据
data4=df1.iloc[1,1]#读取指定行列位置数据:读取(1,1)位置的数据
data5=df1.iloc[[1,2]].values#读取指定多行:读取第一行和第二行所有数据
data6=df1.iloc[:,[0]].values#读取指定列的所有行数据:读取第一列所有数据
print("数据:\n{0}".format(data3))
print("数据:\n{0}".format(data4))
print("数据:\n{0}".format(data5))
print("数据:\n{0}".format(data6))
#3.获取xlsx文件行号、列号
print("输出行号列表{}".format(df1.index.values))#获取所有行的编号:0、1、2、3、4
print("输出列标题{}".format(df1.columns.values))#也就是每列的第一个元素
#4.将xlsx数据转换为字典
data=[]
for i in df1.index.values:#获取行号的索引,并对其遍历
#根据i来获取每一行指定的数据,并用to_dict转成字典
row_data=df1.loc[i,['id','name','class','data','score',]].to_dict()
data.append(row_data)
print("最终获取到的数据是:{0}".format(data))
#iloc和loc的区别:iloc根据行号来索引,loc根据index来索引。
#所以1,2,3应该用iloc,4应该有loc
数据:d1.xlsx
id | name | class | data | score |
201901 | A | 1 | Jan-20 | 1.3 |
201902 | B | 2 | Mar-20 | 3.4 |
201903 | C | 3 | May-20 | 3.4 |
201904 | D | 1 | Jan-20 | 3.4 |
201905 | E | 1 | Feb-20 | 5.6 |
201906 | F | 1 | Mar-20 | 4.6 |
201907 | G | 1 | Feb-19 | 7.8 |
201908 | H | 2 | Apr-30 | 5.6 |
201909 | I | 3 | Jan-42 | 5.6 |
201910 | G | 4 | Mar-30 | 4.5 |
201911 | K | 5 | Apr-20 | 3.4 |
201912 | L | 6 | Apr-20 | 2.3 |
201913 | M | 4 | Mar-20 | 2.4 |
运行结果展示
来源:https://blog.csdn.net/RitaAndWakaka/article/details/108366203
标签:python,pandas,xlsx
0
投稿
猜你喜欢
python中not not x 与bool(x) 的区别
2021-04-27 03:50:17
仿vue-cli搭建属于自己的脚手架的方法步骤
2024-05-21 10:18:09
struts2+jsp+jquery+Jcrop实现图片裁剪并上传实例
2023-06-19 16:30:10
insert select与select into 的用法使用说明
2012-01-05 18:47:58
Python函数式编程指南(四):生成器详解
2023-08-23 05:50:02
Python中if __name__==‘__main__‘用法详情
2021-07-18 02:38:20
Python中re模块的元字符使用小结
2023-03-25 16:41:50
MySQL详细讲解多表关联查询
2024-01-13 23:47:15
PHP 进程锁定问题分析研究
2023-11-21 18:14:10
基于PyTorch实现EdgeCNN的实战教程
2023-12-30 22:28:20
Python中处理字符串之islower()方法的使用简介
2021-03-26 16:40:35
支持生僻字且自动识别utf-8编码的php汉字转拼音类
2023-11-14 21:04:40
深入浅出MySQL双向复制技术
2009-03-25 15:40:00
Python利用PsUtil实现实时监控系统状态
2022-11-26 12:43:11
Mysql逗号拼接字符串的关联查询以及统计问题
2024-01-28 12:15:03
IE和Firefox下event事件杂谈
2024-04-22 13:25:33
使用python flask框架开发图片上传接口的案例详解
2021-12-26 05:54:30
在python中实现调用可执行文件.exe的3种方法
2022-08-10 06:40:42
python Django 创建应用过程图示详解
2022-10-29 03:04:40
python中的线程threading.Thread()使用详解
2021-02-25 21:38:38