Building Simple Projects in Python
In my quest to deepen my grasp of Python fundamentals, I embarked on a journey of creation, delving into the world of simple projects.
Project 1: A Simple Calculator
I chose a calculator as my first project because it’s straightforward and covers basic Python concepts like functions, user input, and conditional statements.
Step by Step
Declare Variables
Write the Function and Output Display
Running the Program
Run the program in your terminal or IDE.
Project 2: Biodata
A simple program that emphasizes user input and then displays it again to the user.
Step by Step
Declare Variables for Input Data
Write the Output Display
Running the Program
Run the program in your terminal or IDE.
Project 3: Graduation Status
If the minimum grade is met, then it will be passed
Step by Step
Declare Variable
Make some Condition
Here are the rules:
If the score is over 80, the message "Selamat Anda Lulus!" will appear, which means you passed
If the score is below 80, you failed
Running the Program
Run the program in your terminal or IDE.
Project 4: Flat Shapes Calculator
This program calculates the area and perimeter of flat shapes based on the user's choice of flat shapes.
Step by Step
Create Function
Here, I created 3 functions to calculate the area and perimeter of a square, rectangle, and isosceles triangle.
Create User Input
The running flat calculation will be according to the user's choice.
If the user enters 1, then the square calculation will begin
If the user enters 2, then the rectangle calculation will begin
If the user enters 3, then the isosceles triangle calculation will begin.
If the user enters a number other than 1/2/3, the program will display the message "Input Invalid" and stop.
Running the Program
Run the program in your terminal or IDE.
User enters 1, then the square calculation will begin:
User enters 2, then the rectangle calculation will begin:
User enters 3, then the isosceles triangle calculation will begin:
User enters a number other than 1/2/3, the program will display the message "Input Invalid" and stop.
Project 5: Calculate Total Payment
The last program calculates the total payment after the 25% discount.
Step by Step
Declare Variables
Create variables to store the price of each item.
Create the Calculation
Calculate and display the total pay before and after discount
Running the Program
Run the program in your terminal or IDE.
Thank you for staying with me in this long tutorial. I hope you liked it and learned something new. If you have any comments or need more details don’t hesitate to type your thoughts.