def ip_num(a): lista = a.split('.') lista = list(map(int,lista)) c='' for i in lista: j= str(bin(i))[2:] ...