Update app.py
Browse files
app.py
CHANGED
|
@@ -27,14 +27,14 @@ for i in range(len(df1)): # Iterate through the rows of df1
|
|
| 27 |
context_data.append(context) # Append the generated context to the list
|
| 28 |
context_data # Initialize the list to store context data
|
| 29 |
|
| 30 |
-
for i in range(len(df11)): # Iterate through the rows of df1
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
|
| 39 |
|
| 40 |
import os
|
|
|
|
| 27 |
context_data.append(context) # Append the generated context to the list
|
| 28 |
context_data # Initialize the list to store context data
|
| 29 |
|
| 30 |
+
# for i in range(len(df11)): # Iterate through the rows of df1
|
| 31 |
+
# context = ""
|
| 32 |
+
# for j in range(17): # Iterate through the first 19 columns
|
| 33 |
+
# context += df11.columns[j] # Add the column name
|
| 34 |
+
# context += ": "
|
| 35 |
+
# context += str(df11.iloc[i][j]) # Convert the value to a string
|
| 36 |
+
# context += " " # Add a space between entries
|
| 37 |
+
# context_data.append(context) # Append the generated context to the list
|
| 38 |
|
| 39 |
|
| 40 |
import os
|