Encontre a posição da palavra em string python
s = "Happy Birthday"
s2 = "py"
print(s.find(s2))
Nervous Nightingale
s = "Happy Birthday"
s2 = "py"
print(s.find(s2))