字符串比较的准确解释

时间:2019-05-20 11:52:00

标签: python string

如何使用关系运算符比较字符串?

为什么print('hello' < 'Hello')返回False

为什么print('hi' > 'hello')返回True

所有这些

print "flow" <= "blow"  # true

print "flow" <= "blow"  # false
print "flow" > "blow" # True

print "flow" <> "blow"  # True

0 个答案:

没有答案