Learn String Manipulation by Building a Cipher - Step 27

Conte-nos o que está acontecendo:

Descreva detalhadamente o problema aqui.

Seu código até o momento


/* User Editable Region */

text = 'Hello World'
text = "g"+ text[1:]

/* User Editable Region */

shift = 3
alphabet = 'abcdefghijklmnopqrstuvwxyz'

for char in text.lower():
    index = alphabet.find(char)
    print(char, index)
    new_index = index + shift

Informações do seu navegador:

Agente de usuário: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Informações do desafio:

Learn String Manipulation by Building a Cipher - Step 27

you are doing it in the right way, the exercise wants you to do it the wrong way, the one that doesn’t work, assigning something to text[0]