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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:52:10+00:00 2026-05-26T18:52:10+00:00

I have a python method that takes a list of tuples of the form

  • 0

I have a python method that takes a list of tuples of the form (string, float) and
returns a list of strings that, if combined, would not exceed a certain limit. I am not splitting sentences to preserve the output length, but making sure to stay within a sentence length from the desired output length.

For example:
s: [('Where are you',1),('What about the next day',2),('When is the next event',3)]

max_length : 5
output : 'Where are you What about the next day'

max_length : 3
output: 'Where are you'

This is what I am doing:

l=0
output = []
for s in s_tuples:
   if l <= max_length:
     output.append(s[0])
     l+=len(get_words_from(s[0]))
 return ''.join(output)

Is there a smarter way to make sure the output word length does not exceed max_length other than stopping when the length is reached?

  • 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-26T18:52:10+00:00Added an answer on May 26, 2026 at 6:52 pm

    One smarter way would be to break out of the loop as soon as you exceed max_length, that way you are not looping over the rest of the list for no reason:

    for s in s_tuples:
        if l > max_length:
            break
        output.append(s[0])
        l += len(get_words_from(s[0]))
    return ''.join(output)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method that takes a list of strings. Unfortunately, if the list
I'm new to Python. I have a method that begins: def foo(self, list): length
Why doesn't Python allow modules to have a __call__ method? (Beyond the obvious that
I have Python nested list that I'm trying to organize and eventually count number
I have a program in python that includes a class that takes a function
I have some python code that: Takes a BLOB from a database which is
I have a bunch of python methods that follow this pattern: def delete_session(guid): conn
I have various database fields that are decrypted using the to_python method. The problem
I'm attempting to create a linked list of length n using Python. I have
I have a Java app that takes a long time to be initialized (so

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.