fix(curriculum): update step description for Caesar cipher challenge (#66596)

This commit is contained in:
Ella
2026-03-23 17:09:16 +00:00
committed by GitHub
parent 80ad151900
commit 0a41253681
@@ -7,9 +7,9 @@ dashedName: step-20
# --description--
As you've already verified, the shift passed to encrypt the text should be positive. It cannot exceed `25` (the last index of `alphabet`) though.
As you've already verified, the shift passed to encrypt the text should be a positive integer. It cannot exceed `25` (the last index of `alphabet`) though.
Add a second condition to the `if` statement that verifies that `shift` is greater than `25`. Remember that the logical OR operation in Python is implemented through the `or` operator.
Add a second condition to the `if` statement that checks if `shift` is greater than `25`. Remember that the logical OR operation in Python is implemented through the `or` operator.
Also, update the returned message to `Shift must be an integer between 1 and 25.`