fix(curriculum): minor enhancement in few code examples (#64320)

This commit is contained in:
Satyam Kumar Verman
2025-12-04 12:58:39 -05:00
committed by GitHub
parent 777a06c5b0
commit 93816c737b
3 changed files with 6 additions and 0 deletions
@@ -54,6 +54,8 @@ This works exactly the same for `.keys()` if you need to iterate over the keys o
for product in products.keys():
print(product)
# Or
for product in products:
print(product)
```
@@ -117,6 +117,8 @@ Output:
for product in products.keys():
print(product)
# Or
for product in products:
print(product)
```
@@ -1682,6 +1682,8 @@ Output:
```python
for product in products.keys():
print(product)
# Or
for product in products:
print(product)