from Bird import * def start(): big = Bird() # Make "Big Bird" full big.full = True # Make another bird hungry # First need to declare reference to a bird and call Bird # constructor tweety = Bird() # Second access the full attribute via the reference tweety.full = False start()