Back to Freecodecamp

Step 61

curriculum/challenges/english/blocks/learn-string-manipulation-by-building-a-cipher/65549f90cf78131c96ebcf28.md

latest1.2 KB
Original Source

--description--

When coding, readability is key. Comments serve as effective notes, explaining the logic behind your code. They prove valuable when returning to a project after some time and also aid your colleagues in understanding the code.

In Python, you can write a comment using a #. Anything that comes after the # won't be executed.

Before your if statement, add a comment saying Append space to the message.

--hints--

You should add a comment saying Append space to the message. Don't forget the # character at the beginning.

js
({ test: () => assert.match(code, /#\s*Append\sspace\sto\sthe\smessage/) })

--seed--

--seed-contents--

py

text = 'Hello Zaira'
custom_key = 'python'

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

    for char in message.lower():
--fcc-editable-region--
        
        if char == ' ':
            encrypted_text += char
--fcc-editable-region--            
        else:
            index = alphabet.find(char)
            new_index = (index + offset) % len(alphabet)
            encrypted_text += alphabet[new_index]
    print('plain text:', message)
    print('encrypted text:', encrypted_text)