python字符串对比大小时间:2023-01-23 09:07:40在python中两个字符串对比大小的时候是按照ASCII码来比较的: str1 = "abc"; str2 = "xyz"; str1>str2 true