faizhalas commited on
Commit
a6a62cf
·
verified ·
1 Parent(s): 2c57838

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
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
- print(f"The column '{column}' exists in the DataFrame.")
66
  else:
67
- print(f"The column '{column}' does not exist in the DataFrame.")
 
 
 
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)