Get the following error in code, unsure of what it means or what I did wrong. Just trying to initialize three list values to empty collections:
nba,nfl,mlb = []
Another option if you want to unpack a generator for instance:
nba,nfl,mlb = [[] for _ in range(3)]