I have two Ip Addresses, and I want to count how many Ip Addresses there are in the range between the two.
Example:
IP_START = "127.0.0.0"
IP_END = "127.0.1.1"
SUM_OF_IP_ADDRESS = 257
Does anyone know if python has anything to help me accomplish this?
Short solution using the
ipaddress
package.this sounded fun so here you go