bigframes.pandas.api.typing.StringMethods.isupper#

StringMethods.isupper() T[source]#

Check whether all characters in each string are uppercase.

This is equivalent to running the Python string method str.isupper() for each element of the Series/Index. If a string has zero characters, False is returned for that check.

Examples:

>>> import bigframes.pandas as bpd
>>> s = bpd.Series(['leopard', 'Golden Eagle', 'SNAKE', ''])
>>> s.str.isupper()
0    False
1    False
2     True
3    False
dtype: boolean
Returns:

Series or Index of boolean values with the

same length as the original Series/Index.

Return type:

bigframes.series.Series