maximum = max(1, 1.25, 3.14, 'a', 1000)- 为什么要给出'a'答案?不应该'a'转换为ASCII并进行检查?
maximum = max(1, 1.25, 3.14, 'a', 1000)
'a'
maximum = max(1, 2.15, "hello")给出"hello"答案.这个答案是怎么来的?
maximum = max(1, 2.15, "hello")
"hello"
python
python ×1