below is error, it looks like there is error in funcation itself
NameError Traceback (most recent call last)
Cell In [12], line 2
1 # Test your code!
----> 2 test_your_code.exercise_1a(book_title, author, year_published, available_copies)
NameError: name 'book_title' is not defined
Hi. Did you use an f-string for all the four? Initially, it said book_title was not defined and then it changed to f-strings.
This means you need four print statements with f-strings. Each of your print statement should have something like f”{title}”. It says you have 3 instead of 4. Check for the f-string you missed. I had that problem while I was checking out the exercise.
Just that I do not have access to the notebooks at the moment as I am not a mentor for the course.