|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
import PyPDF2
pdff1=open("2.pdf","rb")
pr = PyPDF2.PdfFileReader(pdff1)
pdff1.close()
以上代码运行报错:
Traceback (most recent call last):
File "C:\Users\dell\Desktop\新建文件夹\callcmd - 副本.py", line 3, in <module>
pr = PyPDF2.PdfFileReader(pdff1)
File "C:\Python34\lib\site-packages\pypdf2-1.26.0-py3.4.egg\PyPDF2\pdf.py", line 1084, in __init__
self.read(stream)
File "C:\Python34\lib\site-packages\pypdf2-1.26.0-py3.4.egg\PyPDF2\pdf.py", line 1689, in read
stream.seek(-1, 2)
OSError: [Errno 22] Invalid argument
我这边运行没有什么问题,有一个警告,另外不需要close语句吧。
import PyPDF2
pdff1=open('2.pdf','rb')
pr=PyPDF2.PdfFileReader(pdff1)
print (pr.numPages)
pdff1.close()
|
|