fix(curriculum): Resolved quotes issue in python review test (#66082)

This commit is contained in:
Aryan Kapoor 2026-02-26 13:34:20 +05:30 committed by GitHub
parent e8580015fc
commit 0b414c7b50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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