summaryrefslogtreecommitdiff
path: root/progs/a956.py
blob: dc88b37fc6ea91c9478fc87f4bfca49022e317bf (plain)
1
2
3
4
import re
def removezero_ip(ip):
 string = re.sub('\.[0]*', '.', ip)
 return string