Could someone give an example of comparing strings using greater or less than operators? I'm not sure what this statement means: 'the alphabetical order of words is based on the alphabetical order of their component letters' | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Could someone give an example of comparing strings using greater or less than operators? I'm not sure what this statement means: 'the alphabetical order of words is based on the alphabetical order of their component letters'

6th Apr 2016, 7:52 PM
nashyboots
2 Answers
+ 14
>>> 'alien' < 'zero' True >>> 'monkey' > 'marriage' True >>> 'Zero' < 'alien' True It's in alfabethical order (a<b<c<....<x<y<z). Any capital letter is less than any lowercase letter (A<B<C<...<X<Y<Z<a<b<c<....<x<y<z)
28th Apr 2016, 1:09 PM
Daniel Ibáñez
Daniel Ibáñez - avatar
+ 1
thanxx buddy.....
25th Jun 2016, 5:55 AM
Prajwal Waingankar
Prajwal Waingankar - avatar