String Python Tutorial

str1 = 'abc'
str2 = 'lmn'
str3 = 'xyz'
print str1 < str2
print str2 != str3
print str1 < str3 and str2 == 'xyz'