ZipFile file not found error

I’m getting an error running this code from Chapter 9 - section 5 Working with Zip. It is telling me that “files.zip” cannot be found (see error below) but I thought the point of ZipFile is to create a zip file. I’m using Windows 11. Can someone pls help?

from pathlib import Path
from zipfile import ZipFile

with ZipFile(“files.zip”) as zip:
print(zip.namelist())

Error:

Exception has occurred: FileNotFoundError
[Errno 2] No such file or directory: ‘files.zip’
File “C:\Users<>\Desktop\HelloWorld\app.py”, line 4, in
with ZipFile(“files.zip”) as zip:
^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: ‘files.zip’

Thanks in advance!