Python Forum
Store a set in a dictionary's value
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Store a set in a dictionary's value
#4
Something like this?

from collections import defaultdict


def get_dict(team_list):
    year = 1903
    winning_dict = defaultdict(set)
    for index in team_list:
        winning_dict[index].add(year)
    return winning_dict
Reply


Messages In This Thread
RE: Store a set in a dictionary's value - by hshivaraj - Oct-04-2020, 01:17 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Read csv file, parse data, and store in a dictionary markellefultz20 4 4,670 Nov-26-2019, 03:33 PM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020