4 lines
91 B
Python
4 lines
91 B
Python
|
import re
|
||
|
ip = "216.08.094.196"
|
||
|
string = re.sub('\.[0]*', '.', ip)
|
||
|
print(string)
|