第27855题 单选题
在Python中,下列字符串字典序比较的表达式结果为True的是?

Python的字符串比较遵循字典序规则,按照Unicode码点逐位比较,直到出现不同字符或某一字符串结束。

A

"apple" > "banana"

B

"hello" == "Hello"

C

"test" > "testing"

D

"banana" > "apple"

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析