shad_ml2_2 / app.py
ilyshi's picture
Update app.py
c0e49dc
raw history blame
No virus
245 Bytes
import streamlit as st
st.markdown("##Hello, people!")
st.markdown("<img src='https://centroderecursosmarista.org/wp-content/uploads/2013/05/arvix.jpg'>", unsafe_allow_html=True)
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)