Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -62,6 +62,8 @@ if uploaded_file is not None:
|
|
| 62 |
|
| 63 |
for column in columns_to_check:
|
| 64 |
if column in data.columns:
|
| 65 |
-
|
| 66 |
else:
|
| 67 |
-
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
for column in columns_to_check:
|
| 64 |
if column in data.columns:
|
| 65 |
+
st.write(f"The column '{column}' exists in the DataFrame.")
|
| 66 |
else:
|
| 67 |
+
st.write(f"The column '{column}' does not exist in the DataFrame.")
|
| 68 |
+
|
| 69 |
+
st.write(data)
|