Task 1 - IP address classifier
Important Note: No third party packages or libraries are allowed!
Build a command line tool that takes an IP address as input in the format: x.x.x.x/x, and print the class of the IP address.
the solution should contain the following information:
- IP address class (A, B, C, D, E)
- IP address designation (Private, Public)
References:
https://www.meridianoutpost.com/resources/articles/IP-classes.php
python main.py 127.0.0.1/24
Output: Class: X, Designation: X
python main.py 192.168.1.1/24
Output: Class: C, Designation: Private
Fork testing