I want to strip all kinds of punctuation at the start of the string using Python. My list contains strings and some of them starting with some kind of punct
for each_string in list: each_string.lstrip(',./";:') #you can put all kinds of characters that you want to ignore.