大家好,又见面了,我是你们的朋友全栈君。
理解原理和相关知识
- 字符串按位比较,两个字符串第一位字符的ascii码谁大,字符串就大,不再比较后面的;第一个字符相同就比第二个字符串,以此类推,需要注意的是空格的ascii码是32,空(null)的ascii码是0
https://zhidao.baidu.com/question/558202137825309252.html - ord 函数接受一个字符
print(max(['1', '2', '3'])) # 3
print(max(['31', '2', '3'])) # 31
print(max(['13', '2', '3'])) # 3
print(max(['10', '11', '12'])) # 12
print(max(['13', '11', '12'])) # 13
print(ord('1')) # 49
print(ord('2')) # 50
print(ord('3')) # 51
# print(ord('10')) TypeError: ord() expected a character, but string of length 2 found
print(ord(' ')) # 32
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/150475.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...