• Boolean statement

Question related to mission Secret Message

 

Hello everyone,

successfully completed the mission but was curious about something.

I was trying to do this

if i.isupper():
     result += i

but had to do it this way,

if i.isupper() == True:

Shouldn't the former way have worked?