Python: Where a string will start with a specific number
Write a Python program that starts each string with a specific number.
Sample Solution:
Python Code:
import re
def match_num(string):
text = re.compile(r"^5")
if text.match(string):
return True
else:
return False
print(match_num('5-2345861'))
print(match_num('6-2345861'))
Sample Output:
True False
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 to match a string that contains only upper and lowercase letters, numbers, and underscores.
Next: Write a Python program to remove leading zeros from an IP address.
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