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 6574089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:12:59+00:00 2026-05-25T15:12:59+00:00

I currently have two set lists that combine steps and time: step = 1,1,1,1,2,2,2,2

  • 0

I currently have two set lists that combine “steps” and “time”:

step = 1,1,1,1,2,2,2,2
time = 1,2,5,6,1,3,5,6

These values directly correlate, meaning a tuple looking like [(1,1),(1,2),(1,5),(1,6),(2,1),(2,3),(2,5),(2,11)]

Basically I’m trying to find the max value for step 1, and the min value of step one, as well as min/max for step 2

minstep1 = 1
maxstep1 = 6
minstep2 = 1
maxstep2 = 11

how can I accomplish this in python? do i need to create a multidimensional list? is there a function that can iterate keyvalue pairs of a tuple that I can just use the zip function?

Thanks!

  • 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-05-25T15:12:59+00:00Added an answer on May 25, 2026 at 3:12 pm

    You’re looking for itertools.groupby. Here is some example code for your question:

    step = 1,1,1,1,2,2,2,2
    time = 1,2,5,6,1,3,5,6
    
    from itertools import groupby, izip
    from operator import itemgetter
    
    for key, group in groupby(izip(step, time), itemgetter(0)):
        group = [item[1] for item in group]
        print 'Step:', key, 'Min:', min(group), 'Max:', max(group)
    

    It groups time by step then finds the min and max for each group. Alternatively, you could do something like:

    step.reverse()
    for key, group in groupby(time, lambda _: step.pop()):
        group = tuple(group)
        print 'Step:', key, 'Min:', min(group), 'Max:', max(group)
    

    To group by step without zipping with time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I (currently) have two forms, one that needs to call the other. In other
All, I currently have two projects that are under SourceSafe that I am unable
I currently have an asp.net website hosted on two web servers that sit behind
We have got two distinct lists of users that we need to power logged
I currently have two types of Lists: List (named LintMessages) and List (named FilterList).
In my project I have two libraries that would currently result in a circular
I currently have two text boxes which accept any number. I have a text
I currently have two apps: app1/ app2/ templates/ app1.html app2.html In app1.html, I'm including
I currently have two panels within another large panel. The left panel is for
Currently I have two MediaWikis, one a slightly older version than the other. I

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.