python應用操作——一行代碼搜索字符串的多個前后綴
提問人:ylm發(fā)布時間: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
繼續(xù)查找其他問題的答案?
相關視頻回答
In [95]: print("http://www.google.com".startswith(("http://", "https://")))True
In [96]: print("http://www.google.co.uk".endswith((".com", ".co.uk")))True
點擊加載更多評論>>