fix(curriculum): correct typo in Building a Cipher step 87 (#55147)

This commit is contained in:
Pranjali Sankpal
2024-06-10 16:25:12 +05:30
committed by GitHub
parent 1cc48a44a5
commit cd6ee6a631
@@ -7,7 +7,7 @@ dashedName: step-87
# --description--
Two or more strings can be concatenated by using the `+` operator. For example: `'Hello' + ' there!'` results in `'Hello there!`.
Two or more strings can be concatenated by using the `+` operator. For example: `'Hello' + ' there!'` results in `'Hello there!'`.
Call the `print()` function and use the `+` operator to concatenate the `text` variable to the string `'Encrypted text: '`. Pay attention to the spacing.