Two strings are said to be similar if they are composed of the smae characters.For example "abaca" and "cba" are similar since both of them are composed of characters 'a','b' and 'c'..However "abaca" and "bcd" are note similar since they do not share all of the same letters.

 Two strings are said to be similar if they are composed of the smae characters.For example "abaca" and "cba" are similar since both of them are composed of characters 'a','b' and 'c'..However "abaca" and "bcd" are note similar since they do not share all of the same letters.



# -*- coding: utf-8 -*-

"""

Created on Tue Jul 25 23:49:31 2023


@author: shubham prajapati

"""


"""

Two strings are said to be similar if they are composed of the smae characters.For example "abaca" and "cba" are similar since both of them are composed of characters 'a','b' and 'c'..

However "abaca" and "bcd" are note similar since they do not share all of the same letters.

"""


    

lst=["xyz","foo","of"]

print(lst)

l=len(lst)

print(l)

count=0

for i in range(0,l):

    for j in range(1,l):

        if(len(lst[i])>len(lst[j])):

            if lst[j] in lst[i]:

                count+=1

            else:

                break

                

            

            

        else:

            if lst[i] in lst[j]:

                count+=1

            else:

                break

            

            

            

                

            

print(count)

    

        

        

Two strings are said to be similar if they are composed of the smae characters.For example "abaca" and "cba" are similar since both of them are composed of characters 'a','b' and 'c'..However "abaca" and "bcd" are note similar since they do not share all of the same letters. Two strings are said to be similar if they are composed of the smae characters.For example "abaca" and "cba" are similar since both of them are composed of characters 'a','b' and 'c'..However "abaca" and "bcd" are note similar since they do not share all of the same letters. Reviewed by Shubham Prajapati on July 25, 2023 Rating: 5

No comments:

If you have any doubt so you can comment me then i will 100% help you ,Through comment Chat

Powered by Blogger.