Listing 10 - Page 0: No Title

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 10\10.1435 - No Title.py
# Description: No Title
##############################################################################

from clients import Client
from accounts import Account

joao = Client("Joao da Silva", "777-1234")
maria = Client("Maria da Silva", "555-4321")

account1 = Account([joao], 1, 1000)
account2 = Account([maria, joao], 2, 500)
account1.withdraw(50)
account2.deposit(300)
account1.withdrawal(190)
account2.deposit(95.15)
account2.withdrawal(250)
account1.statement()
account2.statement()
Click here to download the file