Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

All caps alphabet as list


>>> w = 'AbcDefgHijkL'
>>> r = re.findall('([A-Z])', word)
>>> r
['A', 'D', 'H', 'L']

Comment

PREVIOUS NEXT
Code Example
Python :: pandas merge all csv in a folder 
Python :: epa meaning 
Python :: python check if path does not exist 
Python :: install matplotlib conda 
Python :: import beautifulsoup 
Python :: python suppress warning 
Python :: drop last row pandas 
Python :: check python version colab 
Python :: python wait 1 sec 
Python :: python get current file location 
Python :: get external ip python 
Python :: how remove name of index pandas 
Python :: python open url in incognito 
Python :: dotenv python 
Python :: python selenium go back 
Python :: create python alias for python3 
Python :: python read json 
Python :: get statistics from list python 
Python :: python download image 
Python :: python program to find first n prime numbers 
Python :: scrapy get current url 
Python :: python upload video to youtube 
Python :: remove axis in a python plot 
Python :: increase xlabel font size matplotlib 
Python :: get list of column names pandas 
Python :: python reimport module 
Python :: rotate screen trick in python 
Python :: get current date in python 
Python :: how to check if column has na python 
Python :: spacy en_core_web_sm error 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =