Learn String Manipulation by Building a Cipher - Step 65

Tell us what’s happening:

What is the mistake here , I did exactly as told

Your code so far


text = 'Hello Zaira'
custom_key = 'python'

def vigenere(message, key):
    key_index = 0
    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    encrypted_text = ''

    for char in message.lower():
    
        # Append space to the message
        if char == ' ':
            encrypted_text += char

# User Editable Region

        else:
            # Find the right key character to encode
            key_char = key[key_index % len(key)]
            key_index += 1
            offset = 'alphabet.index(key_char)'


# User Editable Region

            index = alphabet.find(char)
            new_index = (index + offset) % len(alphabet)
            encrypted_text += alphabet[new_index]
    print('plain text:', message)
    print('encrypted text:', encrypted_text)

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 65

Why are you using quote marks here?

1 Like

Since, values of variables would have quotes like that, I removed them and It worked

1 Like

Quotes turn that into a string so they won’t work as a variable anymore.

a = 5
print(a)
>>> 5

print('a')
>>> a