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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:07:49+00:00 2026-05-29T09:07:49+00:00

I need to perform some calculations a large list of numbers. Do array.array or

  • 0

I need to perform some calculations a large list of numbers.

Do array.array or numpy.array offer significant performance boost over typical arrays?

I don’t have to do complicated manipulations on the arrays, I just need to be able to access and modify values,

e.g.

import numpy
x = numpy.array([0] * 1000000)
for i in range(1,len(x)):
  x[i] = x[i-1] + i

So I will not really be needing concatenation, slicing, etc.

Also, it looks like array throws an error if I try to assign values that don’t fit in C long:

import numpy
a = numpy.array([0])
a[0] += 1232234234234324353453453
print(a)

On console I get:

a[0] += 1232234234234324353453453
OverflowError: Python int too large to convert to C long

Is there a variation of array that lets me put in unbounded Python integers?
Or would doing it that way take away the point of having arrays in the first place?

  • 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-29T09:07:50+00:00Added an answer on May 29, 2026 at 9:07 am

    Your first example could be speed up. Python loop and access to individual items in a numpy array are slow. Use vectorized operations instead:

    import numpy as np
    x = np.arange(1000000).cumsum()
    

    You can put unbounded Python integers to numpy array:

    a = np.array([0], dtype=object)
    a[0] += 1232234234234324353453453
    

    Arithmetic operations compared to fixed-sized C integers would be slower in this case.

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

Sidebar

Related Questions

I have two T-SQL scalar functions that both perform calculations over large sums of
I need to perform some action when my application receives focus. I've tried hooking
I need to perform some operations on all folders within a file share which
I have a class that I need to perform some actions on but I
I have a lotus view that stores a number. I need to perform some
I'm currently maintaining some web server software and I need to perform a lot
I need some advice on techniques to perform page redirect in asp.net. Which one
I need to perform some file operations on WinCE platform. The paths of file
I need some help in coding this in C# I have a list of
I need perform some extra logic on an object before it is saved to

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.