Account class that holds an account holder’s name and balanceAccount’s definition, let’s demonstrate its capabilities Account and Decimal¶ch10 examples folder, then import class Accountfrom account import Account
Account maintains and manipulates the account balance as a Decimalfrom decimal import Decimal
Account Object with a Constructor Expression¶account1 = Account('John Green', Decimal('50.00'))
Account’s Name and Balance¶Account object’s name and balance attributesaccount1.name
account1.balance
Account¶deposit method receives a positive dollar amount and adds it to the balanceaccount1.deposit(Decimal('25.53'))
account1.balance
Account Methods Perform Validation¶Account’s methods validate their argumentsaccount1.deposit(Decimal('-123.45'))
©1992–2020 by Pearson Education, Inc. All Rights Reserved. This content is based on Chapter 5 of the book Intro to Python for Computer Science and Data Science: Learning to Program with AI, Big Data and the Cloud.
DISCLAIMER: The authors and publisher of this book have used their best efforts in preparing the book. These efforts include the development, research, and testing of the theories and programs to determine their effectiveness. The authors and publisher make no warranty of any kind, expressed or implied, with regard to these programs or to the documentation contained in these books. The authors and publisher shall not be liable in any event for incidental or consequential damages in connection with, or arising out of, the furnishing, performance, or use of these programs.