Unit-4 in Python
Unit-4 in Python
class GFG:
None
def value():
return 10
g = GFG()
# class object
g.d1 = value
# function
value.d1 = "Geeks"
print(value.d1)
print(g.d1() == value())
Output:
Geeks
True
Now, the above program seems to be confusing, but let’s try to understand it.
Firstly let’s see the objects, g and value(functions are also considered as objects in
Python) are the two objects. Here the dynamic attribute for both the objects is
“d1”. This is defined at runtime and not at compile time like static attributes.
Note: The class “GFG” and all other objects or instances of this class do not know
the attribute “d1”. It is only defined for the instance “g”.
Example 2:
class GFG:
employee = True
e1 = GFG()
e2 = GFG()
e1.employee = False
e2.name = "Nikhil"
print(e1.employee)
print(e2.employee)
print(e2.name)
print(e1.name)
Output:
False
True
Nikhil
Separate balance into a checking account balance and a savings account balance
Create a transfer of funds between checking account and savings account
Create a transfer of funds between savings account and checking account
By completing the above, multiple new class objects and functions will need to be completed.
Also, the formatting of print statements will be different to accommodate the balance of funds to
two decimal places.
ATM Class Objects and Functions Create Class and Define Functions
What are class objects?
When creating the ATM program, the class objects are created under a class and these objects
have variables with an associated behavior. For instance, when depositing funds into an account,
the balance will increase and a withdraw of funds the balance will decrease but never go below a
fund of amount of $0.00. So, objects are needed in the ATM program class to completed these
examples.
class Account:
# Construct an Account object
def __init__(self, id, checkingBalance = 0, savingsBalance = 0, annualInterestRateSavings =
3.4):
self.id = id
self.checkingBalance = checkingBalance
self.savingsBalance = savingsBalance
self.annualInterestRateSavings = annualInterestRateSavings
def getId(self):
return self.id
def checkingAccountBalance(self):
return self.checkingBalance
def withdrawCheckingAccount(self, amount):
self.checkingBalance -= amount
def savingsAccountMonthlyInterest(self):
return self.savingsBalance * self.savingsAccountMonthlyInterest()
def savingsAccountAnnualInterestRate(self):
return self.annualInterestRateSavings
def savingsAccountMonthlyInterestRate(self):
return self.annualInterestRateSavings / 12
1 def main():
5 account = Account(i, 0)
6 accounts.append(account)
Overview
A datastore entity has a key and a set of properties. An application
uses the datastore API to define data models, and create instances
of those models to be stored as entities. Models provide a common
structure to the entities created by the API, and can define rules for
validating property values.
Model Classes
The Model Class
class Pet(db.Model):
name = db.StringProperty(required=True)
type = db.StringProperty(required=True, choices=set(["cat", "dog", "bird"]))
birthdate = db.DateProperty()
weight_in_pounds = db.IntegerProperty()
spayed_or_neutered = db.BooleanProperty()
pet = Pet(name="Fluffy",
type="cat")
pet.weight_in_pounds = 24
class Person(db.Expando):
first_name = db.StringProperty()
last_name = db.StringProperty()
hobbies = db.StringListProperty()
p = Person(first_name="Albert", last_name="Johnson")
p.hobbies = ["chess", "travel"]
p.chess_elo_rating = 1350
Attributes whose names begin with an underscore (_) are not saved
to the datastore entity. This allows you to store values on the model
instance for temporary internal use without affecting the data saved
with the entity.
Note: Static properties will always be saved to the datastore entity regardless
of whether it is Expando, Model, or begins with an underscore (_).
del p.chess_elo_rating
p1 = Person()
p1.favorite = 42
p1.put()
p2 = Person()
p2.favorite = "blue"
p2.put()
p3 = Person()
p3.put()
class Contact(polymodel.PolyModel):
phone_number = db.PhoneNumberProperty()
address = db.PostalAddressProperty()
class Person(Contact):
first_name = db.StringProperty()
last_name = db.StringProperty()
mobile_number = db.PhoneNumberProperty()
class Company(Contact):
name = db.StringProperty()
fax_number = db.PhoneNumberProperty()
The subclasses can be instantiated just like any other model class:
p = Person(phone_number='1-206-555-9234',
address='123 First Ave., Seattle, WA, 98101',
first_name='Alfred',
last_name='Smith',
mobile_number='1-206-555-0117')
p.put()
c = Company(phone_number='1-503-555-9123',
address='P.O. Box 98765, Salem, OR, 97301',
name='Data Solutions, LLC',
fax_number='1-503-555-6622')
c.put()