How To Validate IP addresses in Python
Validating input is always important - you don’t want random errors popping up when you try to directly insert user-inputted data into your functions.
Python has lots of built-in validation. For example, if you’re expecting a number, you can do something like this:
It’s very straightforward to validate built-in types in Python, but an IP address is just a string in Python - and any string is a valid string.
We need a way to ensure that it’s a valid IP address. Here’s how:
This is the Python 2 version of how to do it. Apparently Python 2 is deprecated or something because we have this fancy new Python 3, which, incidentally, has a built-in IP address type.
You can do the same thing in Python 3 like this: