I have two strings to compare and the following result should return
s1 = 'toyota innova'
s2 = 'toyota innova 7'
if s1 like s2
return true
OR
s1 = 'tempo traveller'
s2 = 'tempo traveller 15 str' //or tempo traveller 17 str
if s1 like s2
return true
So, how this I compare in python? for eg. getmecab.com/round-trip/delhi/agra/tempo-traveller
In this it is showing that we don't find this model name but if you scroll down there is tempo traveller 12str/15str showing. so I have show these two cabs in search of tempo traveller.