Python Schoolby trefilov
Шаг 1 из 3+160 XP

Проект: банковские счета

Класс Account с deposit и withdraw.

Класс

class Account:
    def __init__(self, balance=0):
        self.balance = balance
    def deposit(self, x): self.balance += x
    def withdraw(self, x):
        if x <= self.balance:
            self.balance -= x