Update app.py
Browse files
app.py
CHANGED
@@ -40,11 +40,11 @@ option = st.sidebar.selectbox(
|
|
40 |
|
41 |
col1, col2, col3 = st.columns([1,1,1])
|
42 |
with col1:
|
43 |
-
uncase=st.
|
44 |
with col2:
|
45 |
-
unpunct=st.
|
46 |
with col3:
|
47 |
-
unspace=st.
|
48 |
|
49 |
if uncase:
|
50 |
mytext = text.lower()
|
|
|
40 |
|
41 |
col1, col2, col3 = st.columns([1,1,1])
|
42 |
with col1:
|
43 |
+
uncase=st.checkbox('Remove Casing')
|
44 |
with col2:
|
45 |
+
unpunct=st.checkbox('Remove Punctation')
|
46 |
with col3:
|
47 |
+
unspace=st.checkbox('Remove Spaces')
|
48 |
|
49 |
if uncase:
|
50 |
mytext = text.lower()
|