Ans
Learning course: Strings using Python Problem Link: Practice Problem in - CodeChef
@gkailashkumar2
while i < (len(u)-1): if u[i] == 't' and u[i+1] == 'h': print('Yes') break i = i + 1 if i == (len(u) - 1): print('no')