basil[~]$ python3 Python 3.6.5 (default, Apr 1 2018, 05:46:30) [GCC 7.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> "apples" < "bananas" True >>> "apples" < "Apples" False >>> "apples" == "apples " False >>> ord("a") 97 >>> ord("A") 65 >>> ord("0") 48 >>> "apples" < "0" False >>> "0" < "apples" True >>> chr(0) '\x00' >>> chr(97) 'a' >>> chr(65) 'A' >>> ord("%") 37 >>> ord("@") 64 >>>