Create a Gross Salary Calculator using Python with Streamlit

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 : ")
Ajink Gupta
Ajink Gupta

Ajink Gupta is a software developer from Dombivli, Maharashtra, India. He has expertise in a variety of technologies including web development, mobile app development, and blockchain. He works with languages and frameworks like JavaScript, Python, Flutter, React, and Django.

Ajink Gupta is also active on several platforms where he shares his work and engages with the community. You can find his projects and contributions on GitHub and follow his tutorials and updates on his YouTube channel​ . He also has a personal website where he showcases his portfolio and ongoing projects at ajinkgupta.vercel.app

Articles: 60