FatalExceptionError
Technical User
i need to know how a a compiler handles logical operations like this specifically for strings. Does it do it based on the ascii value or what.
ie if i have a statement like this
with some_string = '20020411'
and some_constant_string = '20020101'
what would it return
ie if i have a statement like this
Code:
if some_string >= some_constant_string
and some_constant_string = '20020101'
what would it return