+ 1
OMG, I DON'T UNDERSTAND. Help me.
https://code.sololearn.com/cmBTr2OoM5T0/?ref=app Mistake - 9 line. I don't understand, and i don't speak English very well. It is said :<
3 Respuestas
+ 3
small typo..
you had .....print(123 == 123 and 123 = 456)
I think you need ...print(123 == 123 and 123 == 456) # look at the last "==".
+ 2
You need to put ==, you accidentally put =
+ 1
Thanks everyone, I fixed <3