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)
In [95]: print("http://www.google.com".startswith(("http://", "https://")))True
In [96]: print("http://www.google.co.uk".endswith((".com", ".co.uk")))True
点击加载更多评论>>