First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

Create a Gross Salary Calculator using Python with Streamlit

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
 
verified
Best answer

We will be getting started from :

what is Streamlit ?

Streamlit is an open source app framework in Python language. It helps us create web apps for data science and machine learning in a short time. It is compatible with major Python libraries such as scikit-learn, Keras, PyTorch, SymPy(latex), NumPy, pandas, Matplotlib etc.

We will be Creating an web app with the help of Streamlit which can calculate gross salary of Employee

First Import it's Library

import streamlit as st

After That to print our heading Employee Gross Salary Calculator

We will use

st.header("Employee Gross Salary Calculator")

To take input
we have to use

st.text_input

for text and

st.number_input

for number

st.write 

for output or print

Complete Code

#importing required libraries

import streamlit as st




st.write("Employee Gross Salary Calculator")

a = st.text_input("Enter Name of Employee :  ")

h= st.text_input("Enter Name of Company : ")

b= st.number_input("Enter Basic salary of Employee : ")

c = st.number_input(" Dearness allowance percentage : ")

d = st.number_input(" House Rent allowance percentage : ")

st.write("Gross salaray Reciept of  ",a)
st.write(" Base salary Offered By company : ",b)

e= int(b)*int(c)/int(100)

st.write("Dearness allowance offered by company : ",e)

f= int(b)*int(d)/int(100)
st.write("House Rent Allowance offerd by Company : ",f)

g=int(b)+int(e)+int(f)
st.write(" Gross Salary : ",g)

st.write(h)
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...