Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Numpy exercise
  • pandas
  • Matplotlib
  • Data visulisation
  • EDA
  • Machin Learning
  • Deep Learning
  • NLP
  • Data science
  • ML Tutorial
  • Computer Vision
  • ML project
Open In App
Next Article:
numpy.place() in Python
Next article icon

numpy.place() in Python

Last Updated : 08 Mar, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The numpy.place() method makes changes in the array according the parameters - conditions and value(uses first N-values to put into array as per the mask being set by the user). It works opposite to numpy.extract(). 
 

Syntax:  

numpy.place(array, mask, vals) 


Parameters : 

array : [ndarray] Input array, we need to make changes into  mask  : [array_like]Boolean that must have same size as that of the input array  value : Values to put into the array. Based on the mask condition it adds only N-elements      to the array. If in case values in val are smaller than the mask, same values get repeated.


Return : 

Array with change elements i.e. new elements being put
Python
# Python Program illustrating # numpy.place() method   import numpy as geek   array = geek.arange(12).reshape(3, 4) print("Original array : \n", array)   # Putting new elements a = geek.place(array, array > 5, [15, 25, 35]) print("\nPutting up elements to array: \n", array)   array1 = geek.arange(6).reshape(2, 3) print("\n\nOriginal array1 : \n", array)  # Putting new elements a = geek.place(array1, array1>2, [44, 55]) print("\nPutting new elements to array1 : \n", array1) 

Output : 

Original array :    [[ 0  1  2  3]   [ 4  5  6  7]   [ 8  9 10 11]]    Putting up elements to array:    [[ 0  1  2  3]   [ 4  5 15 25]   [35 15 25 35]]      Original array1 :    [[ 0  1  2  3]   [ 4  5 15 25]   [35 15 25 35]]    Putting new elements to array1 :    [[ 0  1  2]   [44 55 44]]

Note : 
These codes won't run on online IDE's. So please, run them on your systems to explore the working. 


Next Article
numpy.place() in Python

M

Mohit Gupta
Improve
Article Tags :
  • Python
  • Python-numpy
  • Python numpy-Indexing
Practice Tags :
  • python

Similar Reads

    numpy.put() in Python
    The numpy.put() function replaces specific elements of an array with given values of p_array. Array indexed works on flattened array. Syntax: numpy.put(array, indices, p_array, mode = 'raise') Parameters : array : array_like, target array indices : index of the values to be fetched p_array : array_l
    1 min read
    in_place module in Python
    Sometimes, while working with Python files, we can have utility in which we wish to alter files without using system context or sys stdout. Such situation require reading/writing files inplace, i.e without using process resources. This can be achieved using the ein_place module in Python. This modul
    3 min read
    Python NumPy
    Numpy is a general-purpose array-processing package. It provides a high-performance multidimensional array object, and tools for working with these arrays. It is the fundamental package for scientific computing with Python.Besides its obvious scientific uses, Numpy can also be used as an efficient m
    6 min read
    NumPy Array in Python
    NumPy (Numerical Python) is a powerful library for numerical computations in Python. It is commonly referred to multidimensional container that holds the same data type. It is the core data structure of the NumPy library and is optimized for numerical and scientific computation in Python. Table of C
    2 min read
    Python | numpy.putmask() method
    With the help of numpy.putmask() method, we can change the elements in an array with the help of condition and given value by using numpy.putmask() method. Syntax : numpy.putmask(array, condition, value) Return : Return the array having new elements according to value. Example #1 : In this example w
    1 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences