Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

extract all capital words dataframe

>>> s = 'abcdefgABCDEFGHIJKLMNOP'
>>> ''.join([c for c in s if c.isupper()])
'ABCDEFGHIJKLMNOP'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #extract #capital #words #dataframe
ADD COMMENT
Topic
Name
1+1 =