How can i add zeros to the leading part in each byte of ip address using python so that each byte will always be in 3 digit format. The input and output should be like
1.2.3.4 ==>> 001.002.003.004
1.192.122.5 ==>> 001.192.122.005
192.168.1.1 ==>> 192.168.001.001