mystring = "Hello" non_case_sensitive_string= mystring.casefold() #this makes it non-case-sensitive. #if you want to make it lowercase, use the following: mystring = "Hello" lowercase_mystring = mystring.lower()