trying to search this list
a = ['1 is the population', '1 isnt the population', '2 is the population']
what i want to do if this is achievable is search the list for the value 1. and if the value exists print the string.
What i want to get for the output is the whole string if the number exists. The output i want to get if the value 1 exists print the string. I.e
1 is the population
2 isnt the population
The above is what i want from the output but I dont know how to get it. Is it possible to search the list and its string for the value 1 and if the value of 1 appears get the string output