This is my list:
names = ['blue v orange', 'white v black', 'red v brown']
I want to split them by ' v '
and append to a new list like this:
['blue', 'white', 'red'] # first
['orange', 'black', 'brown'] # second
How can I append them after splitting? The below code does not work:
first = []
second = []
for x in names:
first, second = x.split(' v ')
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…