modin.pandas.Series.str.istitle¶
- Series.str.istitle()[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.30.0/snowpark-python/.tox/docs/lib/python3.9/site-packages/modin/pandas/series_utils.py#L544-L545)¶
- 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. If a string has zero characters, False is returned for that check. - Return type:
- Series of boolean values with the same length as the original Series. 
 - Examples - >>> s = pd.Series(['leopard', 'Golden Eagle', 'SNAKE', '', 'Snake']) >>> s.str.istitle() 0 False 1 True 2 False 3 False 4 True dtype: bool