In this program, we will take a string as input and get a list of mobile numbers from the given string.
Steps to solve the program
- Take a list as input.
- Convert the string into a list using split() and create an empty list.
- Use for loop to iterate over every word in the list.
- If the length of the word is 10 and that word contains all numbers then add that word to the empty list.
- Print the output.
#Input string
str1 = """"We have 2233 some employee 8988858683 whos 3455 mobile numbers
are randomly distributed 2312245566 we want 453452 to get 4532892234
all the mobile numbers 9999234355 from this given string"""
List1 = str1.split(" ")
List2 = []
for val in List1:
if len(val) == 10 and val.isnumeric():
List2.append(val)
#Printing outptut
print(List2)
Output :
['8988858683', '2312245566', '4532892234', '9999234355']
get all the email id’s from given string