Create a function that takes a string (IPv4 address in standard dot-decimal format) and returns True if the IP is valid or False if it's not.
is_valid("1.2.3.4") ➞ True
is_valid("1.2.3") ➞ False
is_valid("1.2.3.4.5") ➞ False
is_valid("123.45.67.89") ➞ True
is_valid("123.456.78.90") ➞ False
is_valid("123.045.067.089") ➞ False
"123.045.067.089" should return False).