Answers for "extract all capital words dataframe"

0

extract all capital words dataframe

>>> s = 'abcdefgABCDEFGHIJKLMNOP'
>>> ''.join([c for c in s if c.isupper()])
'ABCDEFGHIJKLMNOP'
Posted by: Guest on August-08-2020

Code answers related to "extract all capital words dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language