Back to Freecodecamp

Step 5

curriculum/challenges/english/blocks/workshop-caesar-cipher/680a5e7f3d47715196b12ca0.md

latest508 B
Original Source

--description--

Now that you have your entire shifted alphabet, remove the print(shifted_alphabet) call.

--hints--

You should remove print(shifted_alphabet) from your code.

js
({ test: () => assert(runPython(`not _Node(_code).has_call("print(shifted_alphabet)")`)) })

--seed--

--seed-contents--

py
alphabet = 'abcdefghijklmnopqrstuvwxyz'
shift = 5
shifted_alphabet = alphabet[shift:] + alphabet[:shift]
--fcc-editable-region--
print(shifted_alphabet)
--fcc-editable-region--