I have two lists:
names = ['me', 'you', 'him', 'her']
scores = ['4', '7', '5', '6']
How do I combine them so that it makes one list?
combined = ['me: 4', 'you: 7', 'him: 5', 'her: 6']
I have two lists:
names = ['me', 'you', 'him', 'her']
scores = ['4', '7', '5', '6']
How do I combine them so that it makes one list?
combined = ['me: 4', 'you: 7', 'him: 5', 'her: 6']