import streamlit as st x = st.slider('Pick x', 1, 100, 5) f""" | Formula | Result | |---------|--------| | $x^2$ | {x**2} | | $x^3$ | {x**3} | | $2^x$ | {2**x} | | $3^x$ | {3**x} | | $x^x$ | {x**x} | """