RalphyZ
Results
1
issues of
RalphyZ
```def createIPList(network): net4 = ipaddress.ip_network(network) ipList = [] for x in net4.hosts(): ipList.append(x) ``` `net4.hosts()` excludes IP Addresses which are a part of the subnet. So, a /32 subnet (which...
enhancement