NumPy isupper() function
The isupper() function returns True for each string element of the ndarray, if all the characters of the string element are in uppercase. Otherwise, this function will return False. For empty strings and for special characters too, it will return False. This function calls str.isupper internally for each element of the array. This function is locale-dependent for an 8-bitContinue Reading
