1 post
6
1
1909
I have this: l=['Car 8', 'Bike 5', 'Train 10'] and I’d like to have something like this: [('Car','8'), ('Bike','5'), ('Train','10')] How could I turn a list of strings into something like a list of…