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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:44:01+00:00 2026-05-25T21:44:01+00:00

I am new to programming. In my latest Python 2.7 project I encountered the

  • 0

I am new to programming. In my latest Python 2.7 project I encountered the following:

RuntimeWarning: overflow encountered in long_scalars

Could someone please elaborate what this means and what I could do to fix that?

The code runs through, but I’m not sure if it is a good idea to just ignore the warning.

It happens during an append process like:

SomeList.append(VeryLongFormula)
  • 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-25T21:44:02+00:00Added an answer on May 25, 2026 at 9:44 pm

    Here’s an example which issues the same warning:

    import numpy as np
    np.seterr(all='warn')
    A = np.array([10])
    a=A[-1]
    a**a
    

    yields

    RuntimeWarning: overflow encountered in long_scalars
    

    In the example above it happens because a is of dtype int32, and the maximim value storable in an int32 is 2**31-1. Since 10**10 > 2**32-1, the exponentiation results in a number that is bigger than that which can be stored in an int32.

    Note that you can not rely on np.seterr(all='warn') to catch all overflow
    errors in numpy. For example, on 32-bit NumPy

    >>> np.multiply.reduce(np.arange(21)+1)
    -1195114496
    

    while on 64-bit NumPy:

    >>> np.multiply.reduce(np.arange(21)+1)
    -4249290049419214848
    

    Both fail without any warning, although it is also due to an overflow error. The correct answer is that 21! equals

    In [47]: import math
    
    In [48]: math.factorial(21)
    Out[50]: 51090942171709440000L
    

    According to numpy developer, Robert Kern,

    Unlike true floating point errors (where the hardware FPU sets a
    flag
    whenever it does an atomic operation that overflows), we need to
    implement the integer overflow detection ourselves. We do it on
    the
    scalars, but not arrays because it would be too slow to implement
    for
    every atomic operation on arrays.

    So the burden is on you to choose appropriate dtypes so that no operation overflows.

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

Sidebar

Related Questions

I’m very new to programming with RSS feeds to please forgive me if this
What features could be added to a new programming language to make it more
I've came across this new acronym, SOFEA, apparently a new programming paradigm for web
i'm new to this kind of things. Kinda the first post ever regarding programming,
I am a brand new programming student, so please forgive my ignorance. My assignment
I'm new programming in shell and I need some help with this code... Buildname=
i been thinking of a new programming language. Before trying to implement it i
let's say that you in your new programming work your boss comes and says
What is the real benefit of creating a new programming language? It is highly
I always believed that when starting to learn a new programming language programmer must

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.