Python: Remove leading zeros from an IP address
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics