import streamlit as st import pandas as pd custom_css = """ """ # Apply custom CSS st.markdown(custom_css, unsafe_allow_html=True) st.markdown(""" """, unsafe_allow_html=True) def main(): st.title("**Natural Language Processing**") st.header("**Text💬**") st.markdown(''' - To represent text in numerical format and tabular format ''') st.markdown(''' - Text is going to to use a field known as NLP(Natural Language Processing) - It is a sub-field in AI which guide the machine to process and analyze the natural language ''') st.subheader("**Natural Language Processing**") st.markdown(''' - Programming language which is used to guide machine to understand and analyze the natural language ''') if st.button("Explore More"): #st.markdown( # 'Click here to explore!', #unsafe_allow_html=True, #) "click here to explore!" if __name__ == "__main__": main()