blaa1997 commited on
Commit
abd81c3
·
verified ·
1 Parent(s): 2a7100e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
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
- 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
 
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