From 0b414c7b50a47371a6bfae13a8e6cdc7c2e1b0cd Mon Sep 17 00:00:00 2001 From: Aryan Kapoor <64773763+Aryankpoor@users.noreply.github.com> Date: Thu, 26 Feb 2026 13:34:20 +0530 Subject: [PATCH] fix(curriculum): Resolved quotes issue in python review test (#66082) --- .../blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md | 4 ++-- .../english/blocks/review-python/67f39e391c9b373069def02c.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md b/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md index 1588ba347d0..666940455af 100644 --- a/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md +++ b/curriculum/challenges/english/blocks/review-python-basics/67f39b40deaec81a3e40e0c5.md @@ -160,13 +160,13 @@ print(isinstance('John Doe', int)) # False ```py developer = 'Jessica' -city = 'Los Angeles' +city = "Los Angeles" ``` - **Accessing Characters from Strings**: You can access characters from strings by using bracket notation like this: ```py -my_str = "Hello world" +my_str = 'Hello world' print(my_str[0]) # H print(my_str[6]) # w diff --git a/curriculum/challenges/english/blocks/review-python/67f39e391c9b373069def02c.md b/curriculum/challenges/english/blocks/review-python/67f39e391c9b373069def02c.md index 02cb4a3943b..8a3845270a8 100644 --- a/curriculum/challenges/english/blocks/review-python/67f39e391c9b373069def02c.md +++ b/curriculum/challenges/english/blocks/review-python/67f39e391c9b373069def02c.md @@ -160,13 +160,13 @@ print(isinstance('John Doe', int)) # False ```py developer = 'Jessica' -city = 'Los Angeles' +city = "Los Angeles" ``` - **Accessing Characters from Strings**: You can access characters from strings by using bracket notation like this: ```py -my_str = "Hello world" +my_str = 'Hello world' print(my_str[0]) # H print(my_str[6]) # w