Python Forum

Full Version: Can u see this code and tell whats wrong with it?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i tried and i cant solve it
can u show me the error

(Apr-28-2020, 09:04 PM)Yoriz Wrote: [ -> ]You didn't fix the or statement, the first if will always be True.
You didn't fix the multiplication of a string.
The fixes are already in posts of his thread.
You can't say "if a == b or c", instead say "if a==b or a==c"
i know Wink but i cant understand them Confused because i am noobie in python
i start learning it since 2 weeks ago


(Apr-28-2020, 09:37 PM)Yoriz Wrote: [ -> ]The fixes are already in posts of his thread.
Look at my last post, apply that to lines 9,11, and 13.

I assume you have fixed the mismatched parentheses pointed out before.
Pages: 1 2