Is there a way to account for both upper and lower case letter in python? Here's the example:
if 'jay' in rapper:
print 'blah blah blah'
I want the if statement to be true for Jay or jay.
What can I do?
|
Is there a way to account for both upper and lower case letter in python? Here's the example:
I want the if statement to be true for Jay or jay. What can I do? |
||||
|
|||
|
|
|
if rapper is a list of strings
|
|||
|
|
|
Just to offer an alternative (@JoelCornett's solution is nicer) you could also do:
An advantage this approach has is that you could check for different names (though not a requirement in this case). I am assuming that |
||||
|
The simplest way would be to do this (assuming
Another option, using regular expressions:
The above will work for |
||||
|
|
typerapperis? For lists/dicts you are better off to ensure case upon insertion, or else write your own search method. – wcdolphin Jun 4 '12 at 2:01