legifrance / app.py
bagbreizh
Create app.py
531db9b
raw
history blame contribute delete
202 Bytes
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Oct 10 20:13:29 2024
@author: legalchain
"""
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)