'abc'.upper() is 'ABC', which is lexicographically less than 'abc' (True).
'1' + '2' * 2 becomes '1' + '22' which is '122', not equal to '12' (True).
3 * 'a' is 'aaa', and 'a' * 2 is 'aa'. 'aaa' < 'aa' is False lexicographically.
11 == '011' is False as an integer is never equal to a string.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Abbribas
1 month, 2 weeks ago