Question regarding book grader assignment- 3rd in 2nd module

Question regarding exercise #3:
I wrote a code, got the expected output, but still got this error when running the test:

Failed test case: Detected incorrect number of valid print statements (with f-strings).
Grader expected: 1
You got: 0

Failed test case: Detected incorrect number of valid print statements (without f-strings).
Grader expected: 1
You got: 0

My code is:

(Solution code removed, as posting it publicly is against the honour code of this community, regardless if it is correct or not. You can share the errors you get)

Hi @Mayshi,

Tests are sensitive to spaces in lines of code where you are printing something.

Instead of doing:

print (...

DO:

print(...

Best,
Mubsi

Thank you!!