第15407题 单选
执行如下Python代码的输出结果是什么?
strA = "A1x"
strA = sorted(strA)
print(strA)
A

['1', 'A', 'x']

B

['1', 'x', 'A']

C

"1Ax"

D

"A1x"