str1 = "Hello, World!" str2 = "hello, world!" if str1.lower() == str2.lower(): print("The strings are equal (case-insensitive).") else: print("The strings are not equal (case-insensitive).")