Odpowiedź:
def get_index(value, text):
for i in range(len(text)):
if text[i] == value:
return i
return -1
val = input("Type a value: ")
text = input("Type a text: ")
print(get_index(val, text))
Wyjaśnienie:
Pamiętaj o wcięciach w kodzie, bo nie wiem czy po skopiowaniu tego kodu wcięcia również się wkleją. W razie pytań pisz.