第32039题 单选题
以下Python代码运行后,输出的结果是?
s = "I love Python"
lst1 = list(s)
lst2 = s.split()
result = "-".join(lst2)
print(result, len(lst1))
A

I-love-Python 13

B

I love Python 13

C

I-love-Python 11

D

I love Python 11

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