
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
186 Views
To return a copy of an array with the trailing characters removed, use the numpy.char.rstrip() method in Python Numpy. The "chars" parameter is used to set a string specifying the set of characters to be removed. If omitted or None, the chars argument defaults to removing whitespace. The chars argument ... Read More

AmitDiwan
470 Views
To return True if two arrays are element-wise equal within a tolerance, use the ma.allclose() method in Python Numpy. This function is equivalent to allclose except that masked values are treated as equal (default) or unequal, depending on the masked_equal argument. The "masked_values" parameter is used to set the masked ... Read More

AmitDiwan
134 Views
To return a copy of an array with the trailing spaces removed, use the numpy.char.rstrip() method in Python Numpy.The numpy.char module provides a set of vectorized string operations for arrays of type numpy.str_ or numpy.bytes_.The chars parameter is a string specifying the set of characters to be removed. If omitted ... Read More

AmitDiwan
111 Views
To return a copy of an array with the leading characters removed, use the numpy.char.lstrip() method in Python Numpy. The "chars" parameter is used to set a string specifying the set of characters to be removed. If omitted or None, the chars argument defaults to removing whitespace. The chars argument ... Read More

AmitDiwan
796 Views
To multiply each element of a masked Array by a scalar value in-place, use the ma.MaskedArray.__imul__() method in Python Numpy. A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an ... Read More

AmitDiwan
184 Views
To subtract a scalar value from each element of a masked Array in-place, use the ma.MaskedArray.__isub__() method in Python Numpy.A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an array ... Read More

AmitDiwan
256 Views
To compute the bit-wise NOT of an array element-wise, use the numpy.bitwise_not() method in Python Numpy. Computes the bit-wise NOT of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator ˜.The where parameter is the condition broadcast over the input. At locations ... Read More

AmitDiwan
200 Views
To return a copy of an array with the leading spaces removed, use the numpy.char.lstrip() method in Python Numpy. The function returns an output array of str or unicode, depending on input type.The numpy.char module provides a set of vectorized string operations for arrays of type numpy.str_ or numpy.bytes_.The chars ... Read More

AmitDiwan
378 Views
To right-justify elements of an array and set the characters to use for padding, use the numpy.char.rjust() method in Python Numpy. The "width" parameter is the length of the resulting strings. The "fillchar" parameter is the character to use for padding.The function returns an output array of str or unicode, ... Read More

AmitDiwan
113 Views
To return a string which is the concatenation of the strings in the sequence, use the numpy.char.join() method in Python Numpy. The 1st parameter is the separator array. The 2nd parameter is the sequence array. The function returns an output array of str or unicode, depending on input typesThe numpy.char ... Read More