ozzyable's picture
fixed an issue in testing
ef058d2
raw
history blame
222 Bytes
import streamlit as st
transactions = st.text_area("Enter your transactions").split(',')
transactions = [i.strip() for i in transactions]
if st.button("Reset", type="primary"):
st.write(f"transaction: {transactions}")