我有一系列不时更改的 IP,我希望每个出现的新 IP 都可以运行命令。
我的代码是:
while (network.status!="connected"):
p=network.connections
for i in p:
print i.ip #checks the IP's in the array i
time.sleep(10)
所以我想每当数组中有一个新值时我就运行一个特定的命令。在 python 中执行此操作的最有效方法是什么。