Ip地址检查器不输出IP地址。

问题描述 投票:0回答:1

按照以下代码 此处 我有一个IP地址检查器。然而,它没有输出IP地址,而是输出了 []. 守则。

import urllib.request
import re

print("we will try to open this url, in order to get IP Address")

url = "http://checkip.dyndns.org"

print(url)

request = urllib.request.urlopen(url).read()

theIP = re.findall(r"d{1,3}.d{1,3}.d{1,3}.d{1,3}", request.decode('utf-8'))


print("your IP Address is: ",  theIP)

预期输出。

we will try to open this url, in order to get IP Address
http://checkip.dyndns.org
your IP Address is: 40.74.89.185

那里的IP地址不是我的,而是来自... 这里.

真实输出。

we will try to open this url, in order to get IP Address
http://checkip.dyndns.org
your IP Address is:  []

我只是从网站上复制了一下,然后修正了错误。我到底做错了什么。请大家帮忙...

我的python版本是idle 3.8。

python request ip-address urllib python-3.8
1个回答
1
投票

原来你的regex是错误的:我已经更新了代码,使用requests get.Request.Request会返回一个元素列表。

findall 将返回一个元素列表,因为你只得到一个ip返回只是使用[0] 。

from requests import get
import re
iphtml = get('http://checkip.dyndns.org').text
theIP = re.findall( r'[0-9]+(?:\.[0-9]+){3}', iphtml)
print(f"Your IP is: {theIP[0]}")

你的代码更新了。

import urllib.request
import re

print("we will try to open this url, in order to get IP Address")

url = "http://checkip.dyndns.org"

print(url)

request = urllib.request.urlopen(url).read()

theIP = re.findall(r'[0-9]+(?:\.[0-9]+){3}', request.decode('utf-8'))


print("your IP Address is: ",  theIP[0])
© www.soinside.com 2019 - 2024. All rights reserved.