×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

'AttributeError: rint' when using numpy.round()

Learn, how can we fix 'AttributeError: rint' when using numpy.round() in Python?
By Pranit Sharma Last updated : December 27, 2023

Fixing - 'AttributeError: rint' when using numpy.round()

Suppose that we are given a numpy array and we need to round the numbers in the array up to two decimal places. We can use numpy.round() or numpy.around() but sometimes we can face the following error:

AttributeError: rint

This happens because we try to round numpy arrays that are objects. Rather than rounding the numpy objects, we should change them in floats using astype to round the values successfully.

Let us understand with the help of an example,

Python code to fix 'AttributeError: rint' error, when using numpy.round()

# Import numpy
import numpy as np

# Creating a numpy array
arr = np.random.rand(5).astype(np.object_)

# Display original data
print("Original data:\n",arr,"\n")

# Rounding numpy array
res = np.around(arr.astype(np.double),2)

# Display result
print("Result:\n",res,"\n")

Output

Example: 'AttributeError: rint' when using numpy.round()

In this example, we have used the following Python basic topics that you should learn:

Python NumPy Programs »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.