comparison of letter of alphabet
if "b" > "a":
print("greater")
is python going to evaluate them in order they appear in alphabet? what if i evaluate a letter like a with a number? will it be according to ASCII?
comparison of letter of alphabet
if "b" > "a":
print("greater")
is python going to evaluate them in order they appear in alphabet? what if i evaluate a letter like a with a number? will it be according to ASCII?