Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
what data structure to use?
#1
Hello,

I have a two-column, CSV file that lists amenities cities have:
ZIP;Amenity
51454;5
51454;6
53130;5
59437;6
63178;1
69029;6
69081;5
69290;5
71540;5
75101;6
75101;6
75101;5
75101;4
etc.


The first colum contains ZIP codes, and the second column contains an amenity for that town (eg. 1=church, 2=school, 3=restaurant, etc.)

[Image: image.png]

I need to write a loop that will fill an array:
1. If it doesn't yet exist, add the zip code as a key in that array
2. For that ZIP, if it doesn't exist, add the key for that kind of amenity (ie. 1, 2, 3, etc.), and increment the value (eg. 1=3 means that the town now has three churches).

What kind of data structure do you think is best for that task?

Thank you.
Reply


Messages In This Thread
what data structure to use? - by Winfried - Mar-15-2021, 10:44 PM
RE: what data structure to use? - by deanhystad - Mar-15-2021, 11:30 PM
RE: what data structure to use? - by BashBedlam - Mar-16-2021, 12:14 AM
RE: what data structure to use? - by Winfried - Mar-16-2021, 11:18 AM
RE: what data structure to use? - by buran - Mar-16-2021, 12:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I add certain elements in this 2d data structure and calculate a mean TheOddCircle 3 1,578 May-27-2022, 09:09 AM
Last Post: paul18fr
  Appropriate data-structure / design for business-day relations (week/month-wise) sx999 2 2,826 Apr-23-2021, 08:09 AM
Last Post: sx999
  Yahoo_fin, Pandas: how to convert data table structure in csv file detlefschmitt 14 7,847 Feb-15-2021, 12:58 PM
Last Post: detlefschmitt
  How to use Bunch data structure moish 2 2,940 Dec-24-2020, 06:25 PM
Last Post: deanhystad
  Correct data structure for this problem Wigi 13 4,676 Oct-09-2020, 11:09 AM
Last Post: buran
  difficulties to chage json data structure using json module in python Sibdar 1 2,101 Apr-03-2020, 06:47 PM
Last Post: micseydel
  File system representation in a data structure Alfalfa 1 2,088 Dec-18-2019, 01:56 AM
Last Post: Alfalfa
  Custom data structure icm63 2 2,557 Mar-27-2019, 02:40 AM
Last Post: icm63
  Nested Data structure question arjunfen 7 4,295 Feb-22-2019, 02:18 PM
Last Post: snippsat
  Display 20 records at a time,data structure or loop pythonds 1 2,489 Mar-29-2018, 11:09 AM
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