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:
Flowchart:
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.
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
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics