如何使用Python檢查URL中是否存在IP地址? 有沒有可用於檢查IP地址的功能? 例如:數據1個&數據2有那麼IP返回1,而數據3將返回0檢查IP地址是否存在於URL中返回其他東西返回
data =['http://95.154.196.187/broser/6716804bc5a91f707a34479012dad47c/',
'http://95.154.196.187/broser/',
'http://paypal.com.cgi-bin-websc5.b4d80a13c0a2116480.ee0r-cmd-login-submit-dispatch-']
def IP_exist(data):
for b in data:
containsdigit = any(a.isdigit() for a in b)
if containsdigit:
print("1")
else:
print("0")
一個特定的IP地址或任何IP地址?在URL中還是在主機部分中的任何地方?即應該與http://google.com/search?q=127.0.0.1匹配嗎?那麼http:// me:[email protected]/呢? (StackOverflow顯示這些不帶'http://'部分,我懶得解決這個問題。) – tripleee