নিম্নলিখিত কোডটি পাইথনে অসংবেদনশীল স্ট্রিং তুলনার একটি উদাহরণ৷
৷উদাহরণ
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