When using boolean operators in python, what is the point of using Unicode or "ASCII" in a string?
# The greater than > operator checks if the left string has a higher # Unicode value than the right string. If true, the Python interpreter # returns a True result. Since W has a Unicode value of 87, and you can # easily calculate that F has a Unicode value of 70, this comparison is # the same as 87 > 70. As this is true, Python will return a True # result. print("Wednesday" > "Friday") True # The less than < operator checks if the left string has a lower # Unicode value than the right string. If you reference the Unicode # chart above, you can see that all lowercase letters have higher # Unicode values than uppercase letters. We can see that B has a # Unicode value of 66 and b has a Unicode value of 98. This # comparison is the same as 66 < 98, which is true. So, Python will # return a True result. print("Brown" < "brown") True