W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
場景:
字符串開頭或者結(jié)尾匹配,一般是使用在匹配文件類型或者 url
一般使用 startwith 或者 endwith
>>> a='http://m.hgci.cn/vip'
>>> a.startswith ('http')
True
注意:這兩個方法里面的參數(shù)可以是 str,也可以是元組,但是不可以是列表和字典
>>> a='http://m.hgci.cn/vip'
>>> a.startswith (('http','ftp'))
True
如果是列表或者字典,則報錯
>>> a='http://m.hgci.cn/vip'
>>> a.startswith (['http','ftp'])
Traceback (most recent call last):
File "", line 1, in
a.startswith (['http','ftp'])
TypeError: startswith first arg must be str or a tuple of str, not list
>>>
其實,除了上面的方法, 也可以使用切片來實現(xiàn),只不過代碼看上去沒那么好看而已
>>> a='http://m.hgci.cn/vip'
>>> a[0:4]=='http'
True
>>>
當(dāng)然,我們也可以用正則表達式來做,但是理解上面就稍微難度有點。
>>> import re
>>> url = 'http://www.python.org'
>>> re.match('http:|https:|ftp:', url)
0, 5), match='http:'>
>>> help(re.match )
Help on function match in module re:
match(pattern, string, flags=0)
Try to apply the pattern at the start of the string, returning
a match object, or None if no match was found.
>>>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: