Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -266,7 +266,7 @@ python_parts = {
|
|
| 266 |
response_placeholders = {}
|
| 267 |
example_placeholders = {}
|
| 268 |
|
| 269 |
-
def
|
| 270 |
st.title("Python Interactive Learning Platform")
|
| 271 |
|
| 272 |
for part, content in python_parts.items():
|
|
@@ -295,7 +295,7 @@ def display_python_parts():
|
|
| 295 |
st.code(response_placeholders[part], language="python")
|
| 296 |
|
| 297 |
|
| 298 |
-
def
|
| 299 |
st.title("Python Interactive Learning Platform")
|
| 300 |
for part, content in python_parts.items():
|
| 301 |
with st.expander(f"{content['emoji']} {part} - {content['details']}", expanded=False):
|
|
|
|
| 266 |
response_placeholders = {}
|
| 267 |
example_placeholders = {}
|
| 268 |
|
| 269 |
+
def display_python_parts_old2():
|
| 270 |
st.title("Python Interactive Learning Platform")
|
| 271 |
|
| 272 |
for part, content in python_parts.items():
|
|
|
|
| 295 |
st.code(response_placeholders[part], language="python")
|
| 296 |
|
| 297 |
|
| 298 |
+
def display_python_parts():
|
| 299 |
st.title("Python Interactive Learning Platform")
|
| 300 |
for part, content in python_parts.items():
|
| 301 |
with st.expander(f"{content['emoji']} {part} - {content['details']}", expanded=False):
|