From 64c84a9213208eac76c9b956340c17c3d697005e Mon Sep 17 00:00:00 2001 From: Ilenia Date: Tue, 5 Jan 2021 16:56:33 +0100 Subject: [PATCH] fix unneded escaping commit suggestions from code review Co-authored-by: Shaun Hamilton <51722130+ShaunSHamilton@users.noreply.github.com> --- .../python-for-everybody/dictionaries-and-loops.md | 3 +-- .../python-for-everybody/reading-files.md | 3 +-- .../regular-expressions-practical-applications.md | 5 ++--- .../python-for-everybody/regular-expressions.md | 9 ++++----- .../variables-expressions-and-statements.md | 3 +-- 5 files changed, 9 insertions(+), 14 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/dictionaries-and-loops.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/dictionaries-and-loops.md index 5474f12357..0201054514 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/dictionaries-and-loops.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/dictionaries-and-loops.md @@ -45,9 +45,8 @@ jan 100 --- -
\[Error]
+
[Error]
## --video-solution-- 1 - diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/reading-files.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/reading-files.md index 9176491c3d..85319177ee 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/reading-files.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/reading-files.md @@ -13,7 +13,7 @@ What is used to indicate a new line in a string? ## --answers-- -
\\n
+
\n
--- @@ -34,4 +34,3 @@ What is used to indicate a new line in a string? ## --video-solution-- 1 - diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions-practical-applications.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions-practical-applications.md index 8f634c63ce..7979e502d2 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions-practical-applications.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions-practical-applications.md @@ -17,11 +17,11 @@ What will search for a "$" in a regular expression? --- -
\\dollar\\
+
\dollar\
--- -
\\$
+
\$
--- @@ -30,4 +30,3 @@ What will search for a "$" in a regular expression? ## --video-solution-- 3 - diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions.md index 97f77c7d05..9475cf7ca1 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/regular-expressions.md @@ -13,11 +13,11 @@ Which regex matches only a white space character? ## --answers-- -
\\S
+
\S
--- -
\\s
+
\s
--- @@ -25,13 +25,12 @@ Which regex matches only a white space character? --- -
\_
+
_
--- -
\\.
+
\.
## --video-solution-- 2 - diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/variables-expressions-and-statements.md b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/variables-expressions-and-statements.md index b957d41259..ae8cf53dee 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/variables-expressions-and-statements.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/python-for-everybody/variables-expressions-and-statements.md @@ -25,9 +25,8 @@ What is the symbol used in an assignment statement? --- -
\|
+
|
## --video-solution-- 3 -