निम्नलिखित कोड पायथन में केस असंवेदनशील स्ट्रिंग तुलना का एक उदाहरण है।
उदाहरण
string1 = 'Star Wars' string2 = 'star wars' if string1.lower() == string2.lower(): print "The strings are case insensitive" else: print "The strings are not case insensitive"
आउटपुट
यह कोड निम्न आउटपुट देता है
The strings are case insensitive