最近要用Python写脚本,但是一直写Java的我比较懵逼,
部分语法解析
源代码:
# 读取第一页
first_page = pdf.pages[0]
# 读取文本
text = first_page.extract_text().replace(" ", "")
#text = first_page.extract_text()
print(text)
if '专用发票' in text:
invoice.type = '专票'
elif '普通发票' in text:
invoice.type = '普票'
else:
raise Exception('未知发票类型或非发票文件')
if '专用发票' in text:
意思是:检索文本中有没有专用发票