File size: 429 Bytes
65b52a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- coding: utf-8 -*-
"""
Created on Mon Jan 23 19:15:33 2023

@author: dverma
"""

import streamlit as st
import pandas as pd
st.title('A Simple Streamlit Web App')
name = st.text_input('Enter your name, ''')
st.write(f'Hello {name}!')
x = st.slider('Select an integer x', 0, 10, 1)
y = st.slider('Select an integer y', 0, 10, 1)
df = pd.DataFrame({'x': [x], 'y': [y] ,'x + y': [x + y]}, index = ['addition row'])
st.write(df)