i have a string like "asdfHRbySFss" and i want to go through one char at a time and see which letters are capitalized, is this possible in python?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use string.isupper()
if you want to bring that back into a string you can do:
|
||||
|
|
|
Use string.isupper() with filter()
|
|||
|
|