w3resource

Python: Remove leading zeros from an IP address

Python Regular Expression: Exercise-16 with Solution

Write a Python program to remove leading zeros from an IP address.

Sample Solution:

Python Code:

import re
ip = "216.08.094.196"
string = re.sub('\.[0]*', '.', ip)
print(string)

Sample Output:

216.8.94.196 

Pictorial Presentation:

Python: Regular Expression - Where a string will start with a specific number.

Flowchart:

Flowchart: Regular Expression - Remove leading zeros from an IP address.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program where a string will start with a specific number.
Next: Write a Python program to check for a number at the end of a string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/re/python-re-exercise-16.php