An error keeps occuring tough all outputs are working as shown

(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)

as you can see, output messages are in line, but the checking keeps showing error, whati have done wrongly in this input.

Many thanks

Hi @benyeung1011,

Please make sure you are writing your text to be printed in a separate line.

Currently, you have:

print("""#your text""")

Change this to:

print("""
#your text
""")

Carefully read the second error you have gotten. It asks for you to check for typos and periods/full stops (.). Your printed text is indeed missing a period at the end of the second sentence.

Also, you have extra space between your first sentence and second sentence.

Fixing these should pass the test.

Best,
Mubsi

thanks , solved it.

1 Like