Spaces:
Runtime error
Runtime error
File size: 154 Bytes
f57db59 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
st.markdown("### Hello dude!")
text = st.text_area("please enter text", value="dummy")
output = text[::-1]
st.markdown(output)
|