Write a function that checks for valid IP addresses.
For this exercise, treat an address as valid only when it is an IPv4 address in dotted-decimal notation. Return True for four numeric octets from 0 through 255, with no leading zeros except for the value 0; otherwise return False.
Use the signature def is_valid_ip(address):, where address is a string and the result is a boolean.
0def is_valid_ip(address):