SyntaxFix
Write A Post
Hire A Developer
Questions
Python boolean keywords are True and False, notice the capital letters. So like this:
True
False
a = True; b = True; match_var = True if a == b else False print match_var;
When compiled and run, this prints: