logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Python-遍历

遍历就是将每一个元素单独取出。可以遍历比如:字符串、列表、元组、字典、以及嵌套数据结构,代码实现如下:# 遍历listnames=['xh','xj','xm']for name in names:print(name,end=' ')# 在for...in 循环用于遍历容器类的数据(字符串,列表,元组,字典,集合)# 遍历字符串for i in 'abcd':print(i,end=' ')#

#python
AttributeError: lxml.etree._Element object has no attribute xpth

AttributeError: lxml.etree._Element object has no attribute xpthimport lxml.etree as le# 分析 xpath 语句,提取1级分类# xpath1=xpth('//div[@class="floor-container popular_recommend"]/text()')# 继续分析 HTML结构,提取2级分类

批量合并同类型文件

需求简述:电脑上下载了大量的以.xlsx文件,需要将.xlsx合并在一张.xlsx中,如果手动去合并太浪费时间而且容易出错当前存在的问题:1、xlsx存放在同一个文件夹,但文件夹中也存在其他类型的文件,比如.txt,以及pdf,而需求是只合并xlsx类型的文件2、各个xlsx表头可能会不一致import xlrdimport pandas as pdimport os```python指定存放文件

到底了