Advertisement
PorisulkiP

Номер 17

Jul 13th, 2022
802
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. #Python
  2. class Wallet:
  3.   def __init__(self, coin):
  4.     self.coins = []
  5.  
  6.   def addCoin(self, coin):
  7.     self.coin.append(coin)
  8.  
  9. wallet = Wallet()
  10. wallet.addCoin(10)
  11. wallet.addCoin(10)
  12. wallet.addCoin(50)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement