For example i am given this string as an input: "HeLlo" How can i make this case insensitive for later uses? I want it to be equal to "hello" or "HELLo" etc...
            Asked
            
        
        
            Active
            
        
            Viewed 2,898 times
        
    1 Answers
1
            
            
        You have the "your string".upper() or "your string".lower() functions, which will allow you to compare the strings, assuring the comparison is case insensitive.
 
    
    
        thomas
        
- 1,133
- 1
- 12
- 31
