How to Solve NameError: name 'PdfFileWriter' is not defined -- PyPDF2

Solution: Import the 'PdfFileWriter' module

To Solve the error, add the following line to the top of your code.

from PyPDF2 import PdfFileWriter

 

For more information:
Python PyPDF2 PdfFileWriter