Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiagohrcosta/python-basic-bank-account
Simple project to apply the first two days of the 100 Days of Code: Python Bootcamp from Angela Yu
https://github.com/thiagohrcosta/python-basic-bank-account
docker python3
Last synced: about 1 month ago
JSON representation
Simple project to apply the first two days of the 100 Days of Code: Python Bootcamp from Angela Yu
- Host: GitHub
- URL: https://github.com/thiagohrcosta/python-basic-bank-account
- Owner: thiagohrcosta
- Created: 2023-04-28T00:51:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-28T01:46:51.000Z (over 1 year ago)
- Last Synced: 2024-10-02T18:41:17.197Z (about 2 months ago)
- Topics: docker, python3
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bank Account (Python)
![enter image description here](https://res.cloudinary.com/dloadb2bx/image/upload/v1682645784/python3_x4gdei.png)## Tecnologias utilizadas
![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white) ![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)This project was created using Docker to studying the basic concepts of Python learned at day 01 and day 02 in the **[100 Days of Code: The Complete Python Pro Bootcamp](https://www.udemy.com/course/100-days-of-code/)**.
## Summary
**Day 01:** Working with variables in Python to manage data
**Day 02:** Understanding Data Types and How to Manipulate Strings**Plus:** To add some complexity I applied just on these beginning topics some conditional flow with while and if/else.
## How to run this project
This project was created with Docker, the Dockerfile is:FROM python:3
WORKDIR /app
COPY . .
CMD ["python", "app/main.py"]To run just download this project and run the follow commands: `docker build -t bank-account .` then run `docker run -it bank-account`.