说明
《Python 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(单选)以下代码的执行结果是?
text = 'hello world'
res = '-'.join(text.split())
print(res)
A) 'hello-world'
B) 'hello world'
C) 'hello-world-'
D) 'hello-world-'
答案:A
查看相关链接中的知识。
(完)
更新时间:Aug. 16, 2024, 10:55 p.m. 标签:python 习题 join split