trouver la position du mot dans String Python

s = "Happy Birthday"
s2 = "py"

print(s.find(s2))
Nervous Nightingale