Odpowiedź:
tekst = input('Podaj tekst: ').lower()
liczba_sp = 0
nowy = ''
if tekst.count(' ') == 0:
print('W tekście nie ma spacji')
for i in range(len(tekst)):
if tekst[i] == 'a':
nowy += 'b'
elif tekst[i] == 'b':
nowy += 'a'
elif tekst[i] == ' ':
liczba_sp += 1
nowy += ' '
print(f'Indeks spacji: {i+1}')
else:
nowy += tekst[i]
print(f'Zmieniony tekst: "{nowy}"')
Wyjaśnienie: