Find the output of the following program.
str1 = "Emma25 is Data scientist50 and AI Expert"
print("The original string is : " + str1)
res = []
temp = str1.split()
for item in temp:
if any(char.isalpha() for char in item) and any(char.isdigit() for char in item):
res.append(item)
for i in res:
print(i)
Answers
Answered by
0
Answer:
follow me
make as brainliest ans
likes my All ans
Explanation:
Emma25 is Data scientist50 and AI Expert
Similar questions