python
tone1128
这个作者很懒,什么都没留下…
展开
-
python路径反斜杠替换,修改文件后缀名
文件路径中反斜杠替换和文件后缀名修改文件路径和名称:xlsPath=D:\Python\files\文件.pdfxlsPath = (filePath[:-3] + "xls")print(xlsPath)D:\Python\files\文件.xls路径中的反斜杠替换xlsPath=D:/Python/files/文件.xlsxlsPath=xlsPath.replace('\\...原创 2020-04-15 16:46:44 · 1952 阅读 · 0 评论 -
python识别pdf中的表格并保存execl
识别pdf中的表格并保存execlpdf每个页码保存一个Execl Sheet页 # 识别pdf表格保存到Execl def Get_Table_From_PDF(self,filePath,): y = 0 j = 0 # 定义保存Excel的位置 self.workbook = xlwt.Workbook() ...原创 2020-04-15 11:44:08 · 585 阅读 · 0 评论 -
python int和string相互转换
1.Python中int和string之间的转化(1)string转化为int10进制string转化为intint(‘4’)(2)string转化为int16进制string转化为intint(‘12’, 16)2.int转化为string(1)int转化为10进制string;str(18)(2)int转化为16进制string;hex(18)...原创 2020-04-15 11:38:20 · 1651 阅读 · 0 评论 -
python实现关键词提取内容
简单的关键词提取的代码文章内容关键词的提取分为三大步:(1) 分词(2) 去停用词(3) 关键词提取分词方法有很多,我这里就选择常用的结巴jieba分词;去停用词,我用了一个停用词表。具体代码如下:import jiebaimport jieba.analyse#第一步:分词,这里使用结巴分词全模式text = '''新闻,也叫消息,是指报纸、电台、电视台、互联网经常使用的记录...转载 2020-04-15 11:31:56 · 3247 阅读 · 6 评论 -
python UnboundLocalError: local variable 'xxx' referenced before assignment
1.UnboundLocalError: local variable ‘xxx’ referenced before assignment在函数外部已经定义了变量n,在函数内部对该变量进行运算,运行时会遇到了这样的错误:主要是因为没有让解释器清楚变量是全局变量还是局部变量。2.Python中int和string之间的转化(1)string转化为int10进制string转化为inti...原创 2020-04-15 11:22:30 · 681 阅读 · 0 评论 -
NotADirectoryError: [WinError 267] 目录名称无效
NotADirectoryError: [WinError 267] 目录名称无效解决方案:这个目录名无效困扰我很久,明明目录路径没问题啊,文件也有,为什么报错呢?原来这个问题是因为只需要path信息,不要写到文件。print(“获取当前文件路径——” + os.path.realpath(file)) # 获取当前文件路径parent = os.path.dirname(os.pat...原创 2020-04-14 15:54:49 · 66447 阅读 · 15 评论 -
Python 识别读取txt Execl CSV文件
coding=utf-81.txt读取with open(“1233.txt”) as file:for line in file:print(line)coding=utf-82.读取csv文件import csvcsv_file = open(‘csvfile_input.csv’,‘r’)reader=csv.reader(csv_file)for item in rea...原创 2020-04-14 09:01:50 · 316 阅读 · 0 评论 -
python 识别读取pdf中的表格数据
import pdfplumberimport pandas as pd #打开pdf文件 with pdfplumber.open(filePath) as pdf: first_page = pdf.pages[0] text = first_page.extract_text() print(text) #读取第二页...原创 2020-04-14 08:14:45 · 4544 阅读 · 2 评论 -
python识别提取pdf表格数据
import pdfplumberimport pandas as pd #打开pdf文件 with pdfplumber.open(filePath) as pdf: first_page = pdf.pages[0] text = first_page.extract_text() print(text) #读取第二页...原创 2020-04-14 08:12:18 · 1849 阅读 · 0 评论 -
python安装教程(Windows系统,python3.7为例)
在python的官网下载python对应版本:https://www.python.org/downloads/windows/标题64位下载Windows x86-64 executable installer 版本32位下载Windows x86 executable installer 版本打开链接如下图,版本会一直更新,选择任意一个适合自...转载 2019-06-13 09:44:55 · 481 阅读 · 0 评论