From 332b1cd3ec3b875bcea4a215cdcb64771c0e615f Mon Sep 17 00:00:00 2001 From: James <112038499+1jds@users.noreply.github.com> Date: Thu, 11 Jan 2024 05:04:15 +1100 Subject: [PATCH] fix(curriculum): python list comp step 9 typo (#53101) --- .../657f0044be09db790b1eb1c5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-list-comprehension-by-building-a-case-converter-program/657f0044be09db790b1eb1c5.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-list-comprehension-by-building-a-case-converter-program/657f0044be09db790b1eb1c5.md index 219f1a7455d..7c4f0407797 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-list-comprehension-by-building-a-case-converter-program/657f0044be09db790b1eb1c5.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-list-comprehension-by-building-a-case-converter-program/657f0044be09db790b1eb1c5.md @@ -7,7 +7,7 @@ dashedName: step-9 # --description-- -Strings in camel case start with a capital character. Since you've converted all such characters to lowercase and prepended an underscore to them, chances are, the converted snake case string has a dangling underscode at the start. +Strings in pascal case start with a capital character. Since you've converted all such characters to lowercase and prepended an underscore to them, chances are, the converted snake case string has a dangling underscode at the start. The easiest way to strip such unwanted character is by using the `.strip()` string method and passing an underscore to the method as argument.