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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T04:20:21+00:00 2026-06-09T04:20:21+00:00

I have some weird numbers such as 19 or 23. These two will need

  • 0

I have some weird numbers such as 19 or 23. These two will need to be separated into 5 lists, such that the sum of the 5 lists will be 19. In other words, 3.8 in each list as 19/5 = 3.8. However the issue is that I can’t have decimals, I want rounded numbers. Is there any way that it would round the numbers accordingly, placing 4, 4, 3, 4, 4 into the lists rather than 3.8 five times?

Even more, some aren’t separated into 5 different numbers. Some might be something like 77/12, thus being separated into 12 diff. lists with either the number 6 or 7 in each, that ends up adding to 77.

Any idea how I could approach this problem?

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-06-09T04:20:22+00:00Added an answer on June 9, 2026 at 4:20 am
    def split(number, length):
        div, mod = divmod(number, length)
        return [div+1]*mod + [div]*(length-mod)
    
    >>> split(19, 5)
    [4, 4, 4, 4, 3]
    >>> split(23, 4)
    [6, 6, 6, 5]
    

    Original version:

    def split(number, length):
        result = [number//length]*length
        for i in range(number%length):
            result[i] += 1
        return result
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a weird issue. I have some icons that are being built based
I came around some weird thing in MS SQL server. I have two tables
I have a function that creates and insert some numbers in a vector. if(Enemy2.dEnemy==true)
I have a large data.frame displaying some weird properties when plotted. I'd like to
I have been tasked to read in some data from some weird old system.
I have textView in my cell and sometimes during tableView scroll some weird calls
I'm having some weird trouble with a project on VS2005. I have a few
Hello I have a problem with trimming string in c++. It adds some weird
So, I have this very weird error - Some advanced PHP devs might also
I have a weird problems with NSArray where some of the members of the

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.