Get a list of mobile numbers from the string

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
  1. Take a list as input.
  2. Convert the string into a list using split() and create an empty list.
  3. Use for loop to iterate over every word in the list.
  4. If the length of the word is 10 and that word contains all numbers then add that word to the empty list.
  5. 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

Leave a Comment