Fundamentals in Python are extremely important and require practice; however, practice should not be boring. The best way is to develop your own projects regardless of how "simple" it may seem.
This terminal application utilizes user input to create an interactive experience. The Locale module allows for formatting of user input to USD currency. Variables stored are used to calculate payments. The application logic is wrapped within a while loop that allows for users to calculate again if they would like.
If you have Docker installed, you can run this application on your own machine with just 2 steps!
Pull the image from Docker Hub
docker pull smhussain5/loan-python
Then run the image as an interactive Docker container
docker run --rm -it smhussain5/loan-python
- PyCharm
- Python
- Input
- "Locale" module
- While loop
This was a straightforward application, but required proper organization for clean code. Fortunately, PEP8 guidelines built into PyCharm allows developers to follow best practices easily!
This project was great practice for conditionals like while loops and if/else statements. It was also great to follow PEP8 guidelines for better code readibility.