I want to clasify a list of string in python depending on whether they are upper case lower case or mixed case any short way to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
There are a number of "is methods" on strings that should meet your needs:
Here's an example of how to use those methods to classify a list of strings:
|
||||
|
|
I am not sure about Python code and the methods on the same but you could always use the ASCII codes to determine the casing and write a custom method of your own to do the same. I am guessing writing the custom method should be better as you will then avoid using the different methods and their implementation respectively and probably loop over the string only once. You can use the bitwise operator to maintain the different cases that you encounter during the loop. Hope this is helpful. Any comments are welcome.. P.S: not from a Python background |
|||
|
|