Skip to content

Building a Banking System with Python part of the DIO bootcamp

License

Notifications You must be signed in to change notification settings

lgustavopuga/Python-Banking-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python-Banking-System

Building a Banking System with Python part of the DIO bootcamp

Sure, here is a GitHub repository description in Markdown for the provided code:

# Simple Banking System

A Python program for a simple banking system that allows users to perform deposit, withdrawal, and check their account balance. This program uses global variables to manage account balance, transaction history, and withdrawal limits.

## Features

- Deposit funds into your account.
- Withdraw funds, with limits and withdrawal tracking.
- Display your account balance and transaction history.
- Easy-to-use command-line interface.

## Usage

1. Clone the repository:

   ```bash
   git clone https://github.com/your-username/simple-banking-system.git
  1. Navigate to the project directory:

    cd simple-banking-system
  2. Run the program:

    python banking_system.py
  3. Follow the on-screen prompts to perform banking operations.

Usage Example

[d] Deposit
[w] Withdraw
[b] Balance
[q] Quit

=> d
Enter the deposit amount: 100
Deposit successful.

[d] Deposit
[w] Withdraw
[b] Balance
[q] Quit

=> w
Enter the withdrawal amount: 50
Withdrawal successful.

[d] Deposit
[w] Withdraw
[b] Balance
[q] Quit

=> b

================ STATEMENT ================
Deposit: $ 100.00
Withdrawal: $ 50.00

Balance: $ 50.00
============================================

[d] Deposit
[w] Withdraw
[b] Balance
[q] Quit

=> q

License

This project is licensed under the MIT License - see the LICENSE file for details.


You can use this Markdown description for your GitHub repository to provide an overview of your simple banking system and guide users on how to use it.

About

Building a Banking System with Python part of the DIO bootcamp

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages