+ 2
Max min problem
How does python compare marks like @&%=+-*/()?
3 Answers
+ 3
ord("@") > ord("=") because of 64 > 61
+ 1
With ord(symbol), for example: ord("(")
+ 1
Oops, my fault
But actually I mean like this:
x=["@","="]
print(max(x))
>>>@
Why?
Why does @ lagerer than = ?