You would do this by creating a dict:
dict
fruits = {k:[] for k in names}
Then access each by (for eg:) fruits['apple'] - you do not want to go down the road of separate variables!
fruits['apple']
2.1m questions
2.1m answers
60 comments
57.0k users