Spaces:
Running
Running
Fix string formatting in markdown cells for Alice's age and Bob's interests to use single quotes for consistency.
Browse files
python/006_dictionaries.py
CHANGED
@@ -196,13 +196,13 @@ def _():
|
|
196 |
|
197 |
@app.cell
|
198 |
def _(mo, nested_data):
|
199 |
-
mo.md(f"Alice's age: {nested_data[
|
200 |
return
|
201 |
|
202 |
|
203 |
@app.cell
|
204 |
def _(mo, nested_data):
|
205 |
-
mo.md(f"Bob's interests: {nested_data[
|
206 |
return
|
207 |
|
208 |
|
|
|
196 |
|
197 |
@app.cell
|
198 |
def _(mo, nested_data):
|
199 |
+
mo.md(f"Alice's age: {nested_data['users']['alice']['age']}")
|
200 |
return
|
201 |
|
202 |
|
203 |
@app.cell
|
204 |
def _(mo, nested_data):
|
205 |
+
mo.md(f"Bob's interests: {nested_data['users']['bob']['interests']}")
|
206 |
return
|
207 |
|
208 |
|