Learn String Manipulation by Building a Cipher - Step 68

Tell us what’s happening:

Im calling the function, storing the return value, putting the return in encryption yet nothing happens

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
        else:        
            # Find the right key character to encode
            key_char = key[key_index % len(key)]
            key_index += 1

            # Define the offset and the encrypted letter
            offset = alphabet.index(key_char)
            index = alphabet.find(char)

# User Editable Region

            new_index = (index + offset) % len(alphabet)
             encrypted_text += alphabet[new_index]
    vigenere(text, custom_key)
    return vigenere(text, custom_key)
    encryption =  return

# User Editable Region

Your browser information:

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

Challenge Information:

Learn String Manipulation by Building a Cipher - Step 68

Welcome to the forum @pavlosp

  1. Something is happening, you have a syntax error in the console to resolve.

  2. Do not call the function from within the same function.

Happy coding