Computer Science, asked by aarthivinathi, 6 months ago

Write a program to compare two strings case insensitive in python​

Answers

Answered by marcos69
0

Answer:

To allow case-insensitive comparisons Python offers special string methods such as upper() and lower() . Both of them are directly available as methods of the according string object. upper() converts the entire string into uppercase letters, and lower() into lowercase letters, respectively.

Answered by s13968
0

Explanation: To allow case-insensitive comparisons Python offers special string methods such as upper() and lower() . Both of them are directly available as methods of the according string object. upper() converts the entire string into uppercase letters, and lower() into lowercase letters, respectively.

Similar questions