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