How to update values in a List in Python?
If the list is
data = ['A','A','B','A B','B C']
I want to chage values
data = ['A','A','B','B','C']
like that. remove first words in values.
i got huge data :'( please help!
How to update values in a List in Python?
If the list is
data = ['A','A','B','A B','B C']
I want to chage values
data = ['A','A','B','B','C']
like that. remove first words in values.
i got huge data :'( please help!