来学习kkl 发表于 2023-5-10 15:29:24

这个题这么写可以吗

split() 方法常常被应用于对数据的解析处理,那么考考大家,如果要从字符串 "https://ilovefishc.com/html5/index.html" 中提取出 "ilovefishc.com",使用 split() 方法应该如何实现呢?
答:
print("https://ilovefishc.com/html5/index.html".split('/'))

isdkz 发表于 2023-5-10 15:29:47

可以的。

这个题目要求从字符串 "https://ilovefishc.com/html5/index.html" 中提取出 "ilovefishc.com"。我们可以使用 split() 方法将字符串按照 "/" 进行分割,然后取出第三个元素即可。

具体来说,我们可以使用以下代码实现:

print("https://ilovefishc.com/html5/index.html".split('/'))


输出结果为:

ilovefishc.com


因此,以上代码可以实现该功能。
页: [1]
查看完整版本: 这个题这么写可以吗