import streamlit as st import pandas as pd import numpy as np # Custom CSS for styling custom_css = """ """ # Inject the CSS into the app st.markdown(custom_css, unsafe_allow_html=True) st.markdown("

📈What is CSV

", unsafe_allow_html=True) st.markdown( "

" "A CSV (Comma-Separated Values) file is a simple file format used to store tabular data, such as a spreadsheet or database. Each row in the file corresponds to a record, and each column is separated by a delimiter, typically a comma (,). CSV files are widely used because they are easy to create, parse, and manipulate." "

", unsafe_allow_html=True ) st.markdown("

📈How to read CSV files

", unsafe_allow_html=True) st.markdown( "

" "CSV files can be read in various programming languages pandas in python, and Microsoft Excel application." "

", unsafe_allow_html=True ) st.markdown("

📈Issues encountered when handling these files

", unsafe_allow_html=True) st.markdown("1. Parse error") st.markdown("2. Unicode Decode Error") st.markdown("3. Out of Memory") st.markdown("4. Large File Size") st.markdown("

📈How to overcome these errors/issues.

", unsafe_allow_html=True) st.markdown("

📈Parse error

", unsafe_allow_html=True) i # Add Jupyter Notebook link at the end st.markdown( "

📈Learn More in the Jupyter Notebook

", unsafe_allow_html=True ) st.markdown( "

" "Click the link below to open the Jupyter Notebook for further exploration." "

", unsafe_allow_html=True ) # Insert your Jupyter Notebook URL here st.markdown( "Open Jupyter Notebook", unsafe_allow_html=True )