Run
str1 = 'abc' str2 = 'cde' if str1 < str2 : print('str1 is less than str2.') else : print('str1 is not less than str2.')
Output