第27653题 单选
执行以下Python代码后,print函数的输出结果是?
str1 = "  hello python  "
str2 = str1.strip().upper()
str3 = str2.split()[1]
print(str3)
A

hello

B

python

C

HELLO

D

PYTHON

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