0
Is it true that the small letters are greater than capital letter.....in python.. Which means a>A
2 Answers
+ 5
Yes because of their ASCII values. In ASCII, 'a' = 97 while 'A' = 65. This also applies in other programming languages not just python.
http://www.asciitable.com/mobile/
Check this out:
https://code.sololearn.com/cYpwNADnV3mi/?ref=app
0
Thanks lambda well explained......