Strip number characters from start of string in list
my_list = [‘1. John’, ‘2. James’, ‘3. Mark’, ‘4. Mary’, ‘5. Helen’, ‘6. David’] I would like to remove the number that is a string, the "." and the white space before the name. for i in my_list: i.lstrip(". ") I was hoping the output would be a list as such: mylist = [‘John’, ‘James’,… Read More Strip number characters from start of string in list