File size: 262 Bytes
39ce4ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
import warnings
warnings.filterwarnings('ignore')
import pandas as pd
import geopandas as gpd
from difflib import get_close_matches
import tempfile
from io import BytesIO
x = st.slider('Select a value')
st.write(x, 'squared is', x * x) |