0
Please where did my codes get error, someone help me identify it please
5 Réponses
+ 7
Line 6: print("do not waste your time)"
It's missing a closing parentheses after the double quote.
You placed the closing parentheses before the double quote..
Corrected version:
print("do not waste your time")
+ 6
Line 6: Misplaced " – it is after ) instead of before.
The identations of print are wrong. The indentation must be exactly 4 spaces.
+ 3
#Dragon Rb Thank you I didn't notice at all, because when I read the correction statement, it speaks about line 7, so though the problem was there (line ) thank you plentifully
0
Print function of 2nd line in if statement the double quoted comma is typed outside of bracket,,
correct is ("do not waste your time")
0
she_loves_him = True
not_respects_him = False
if she_loves_him:
print("you should go an get married")
print("do not waste your time")
elif not_respects_him:
print("you should do the right things and respect him or be sapareted ")
else:
print("this is the worst part of relationship")
This is correct answer