位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——一行代码搜索字符串的多个前后缀

提问人:ylm发布时间:2020-09-29

In [95]: print("http://www.google.com".startswith(("http://", "https://")))True

 

In [96]: print("http://www.google.co.uk".endswith((".com", ".co.uk")))True

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部