All Caps Alphabet As List

[Solved] All Caps Alphabet As List | Python - Code Explorer | yomemimo.com
Question : All caps alphabet as list

Answered by : muhammad-mehedi-hasan

['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

Source : | Last Update : Sat, 19 Sep 20

Question : All caps alphabet as list

Answered by : kind-kitten-i8blyzapbw0y

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

Source : https://devarama.com/questions/6602111/how-to-search-for-a-capital-letter-within-a-string-and-return-the-list-of-words-with-and-without-capital-letters | Last Update : Sun, 10 Apr 22

Answers related to All caps alphabet as list

Code Explorer Popular Question For Python