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 = []
basically means left hand side has more values than right hand side of =
=
nba = nfl = mlb = [] should get you three list values initialized to empty collections. So should nba, nfl, mlb = [], [], []
nba = nfl = mlb = []
nba, nfl, mlb = [], [], []