Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7941329
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:38:16+00:00 2026-06-03T23:38:16+00:00

I am iterating over such objects and creating a list of lists. Something like

  • 0

I am iterating over such objects and creating a list of lists.

Something like this:

#data.py
values = []
for o in objects:
    data = [o.day, o.seconds]
    values.append(data)

So that gives me, for example:

[['27/2', 34], ['23/2', 21], ['25/2', 11], ['27/2', 38]]

But I need to make an additional operation. If data[0] (day) is already in values, I don’t want to append data, I want to add data[1] to the existing object’s data[1].

So from the above list, what I really want is:

[['27/2', 72], ['23/2', 21], ['25/2', 11]]

I can do the operation without a list, but, at the end, I need to convert it to a list for final use.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T23:38:18+00:00Added an answer on June 3, 2026 at 11:38 pm

    Here’s how to use a defaultdict

    from collections import defaultdict
    values = defaultdict(int)
    for o in my_object:
        values[o.day] += o.seconds
    

    Here’s a way using a Counter

    from itertools import Counter
    values = Counter()
    for o in my_object:
        values += Counter({o.day: o.seconds})
    

    You can get a list from values like this

    values.items() # or list(values.items()) in Python3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

To access the values id1 & id2 im iterating over every value in the
All sites that list css properties such like MDN or w3schools list every CSS
Perl's Data::Rmap allows you to recursively evaluate a BLOCK over a list of data
Is there a jQuery way to perform iteration over an object's members, such as
I'm iterating over a JRE Collection which enforces the fail-fast iterator concept, and thus
I want avoid iterating over a nil array. My bad solution: if nil!=myArr myArr.each
I have the following issue related to iterating over an associative array of strings
Is there a better shorter way than iterating over the array? int[] arr =
Starting from Visual Studio 2010, iterating over a set seems to return an iterator
I need a function, which is capable of iterating over the collection, calling a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.