In this program, we will take a string as input and get all the email id’s from the given string.
Steps to solve program
- Take a string as input.
- Convert the string into a list using split() and create an empty list.
- Using for loop iterate over each word in the string.
- If the character in the word contains “@” add that word to the empty string.
- Print the output.
#Input string
str1 = """We have some employee whos john@gmail.com email id’s are
randomly distributed jay@lic.com we want to get hari@facebook.com
all the email mery@hotmail.com id’s from this given string"""
List = str1.split(" ")
List1 = []
for char in List:
for val in char:
if val == "@":
List1.append(char)
#Printing output
print(List1)
Output :
['john@gmail.com', 'jay@lic.com', 'hari@facebook.com', 'mery@hotmail.com']