Skip to content

Instantly share code, notes, and snippets.

@vubon
Created September 14, 2019 14:08
Show Gist options
  • Save vubon/46bf9607ea361f2ab20befd94b4d83d7 to your computer and use it in GitHub Desktop.
Save vubon/46bf9607ea361f2ab20befd94b4d83d7 to your computer and use it in GitHub Desktop.
Python Property function part 4
# .......
# Just declare the @property decorator and solve those problems.
@property
def account_information(self) -> dict:
"""
Get account information
:return: {'bank_account': '0004-0067894712', 'balance': 1000.5}
:rtype: dict
"""
return dict(bank_account=self.bank_account, balance=self.balance)
# .......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment