Python-TheNoTheoryGuide
Python-TheNoTheoryGuide copied to clipboard
002_conditionals - Incorrect String Comparison
Hi, the comparison between strings "Jennifer" > "Python" results in "False" but your comment suggests it is true. Why is that?

It should be False as Jennifer is comes lexographically before so it is smaller. Thus the expression is False. Try it out with 'J' > 'P' you will get the same result.
And can you please make a pr, to update the comment?