This project will introduce you to Hyperskill projects. Practice Python coding to build a program that can automate your account management routine.
Imagine that you're the owner of a new small corner shop. You are doing well and want to determine how much you earned in the first month. Create a simple tool that will calculate your net income. Upon completing this project, you can use this tool for your own accounting needs.
This project allows you to practice and strengthen your coding skills, helping you get ready for more advanced tasks ahead.
Start with printing the names of items and their prices using your first Python function.
- Introduction to Python
- Multi-line programs
- Writing first program
See the source code: mfpwp-stage1.py
You know how much you earned by selling each item. Calculate the total earnings before staff and other expenses!
- Variables
- Basic data types
- PEP 8: Coding style guide
- Comments
- Integer arithmetic
See the source code: mfpwp-stage2.py
Measure the shop's net income. Subtract staff, electricity, and security expenses.
- Program with numbers
- Naming variables
- Taking user's input
- Sep and end arguments of print
See the source code: mfpwp-stage3.py
Project completed by Luuk Walhout on 13 February 2024 as part of the Hyperskill Python Core track.