About 52,400 results
Open links in new tab
  1. numpy.arrayNumPy v2.4 Manual

    numpy.array # numpy.array(object, dtype=None, *, copy=True, order='K', subok=False, ndmin=0, ndmax=0, like=None) # Create an array. Parameters: objectarray_like An array, any object exposing …

  2. NumPy Creating Arrays - W3Schools

    NumPy is used to work with arrays. The array object in NumPy is called ndarray. We can create a NumPy ndarray object by using the array() function. type (): This built-in Python function tells us the …

  3. NumPy Array in Python - GeeksforGeeks

    Jan 12, 2026 · NumPy is a homogeneous data structure (all elements are of the same type). It is significantly faster than Python's built-in lists because it uses optimized C language style storage …

  4. Understanding Python numpy.array () - PyTutorial

    Oct 20, 2024 · Learn how to use the numpy.array () function in Python. This guide covers the basics of creating arrays, array types, and practical examples for beginners.

  5. NumPy array () - DataCamp

    Learn how to efficiently create and manipulate arrays using np.array in Python. This guide covers syntax, examples, and practical applications for data analysis and scientific computing.

  6. Array creation — NumPy v2.4 Manual

    The following lists the ones with known Python libraries to read them and return NumPy arrays (there may be others for which it is possible to read and convert to NumPy arrays so check the last section …

  7. Different Ways to Create Numpy Arrays in Python

    Jan 31, 2026 · NumPy provides multiple efficient methods for creating arrays, each suited to different use cases and data sources. This article covers the most commonly used techniques for creating …

  8. Mastering NumPy Arrays in Python: A Comprehensive Guide

    Jan 29, 2025 · A NumPy array is a multi-dimensional container for homogeneous data, meaning all elements in the array must be of the same data type. It provides a more efficient way to store and …

  9. A detailed guide to numpy.array () function (7 examples)

    Feb 29, 2024 · One of the fundamental functions in NumPy is numpy.array(), which is used to create array objects. This guide delves into the numpy.array() function with seven practical examples to …

  10. NumPy Array Functions - GeeksforGeeks

    Jul 23, 2025 · With NumPy array functions, you can create, reshape, slice, sort, perform mathematical operations, and much more—all while taking advantage of the library's speed and efficiency. This …