NumPy char upper

In this chapter, we will discuss about NumPy char upper.This function calls str.upper function on each element in an array to return the uppercase array elements. import numpy as np print np.char.upper('hello')…

Continue ReadingNumPy char upper