无法比较python中的ip地址

时间:2014-12-04 08:09:12

标签: python computer-science

我的代码看起来像这样

from socket import gethostbyname, gethostname
with open('LoggedIn.csv', 'r') as csvfile:
    aList = []
    for line in csvfile.readlines():
        array = line.split(',')
        aList.append(array[2])
ip = gethostbyname(gethostname())

if ip in aList:
    x = 1
else:
    x = 0

当我得到用户的IP地址并且我的LoggedIn.csv文件中有相同的IP地址时,if语句只返回false。

谢谢!

0 个答案:

没有答案