UNDERSTANDING THE if __name__ == "__main__" MAGIC METHOD IN PYTHON WITH DETAILED EXAMPLES

UNDERSTANDING THE if __name__ == "__main__" MAGIC METHOD IN PYTHON WITH DETAILED EXAMPLES

Author
winstonmhango23
Published
June 25, 2024
Reading Time
8 min read
Views
491
Python is known for its simplicity and readability, and it provides powerful constructs that enable developers to write clean and modular code. One such construct is the if __name__ == "__main__" statement, which is often seen in Python scripts
if __name__ == "__main__":
    # Code to execute when the module is run directly
banking/
    __init__.py
    account.py
    loan.py
    premium.py
    main.py
from abc import ABC, abstractmethod

class Account(ABC):
    def __init__(self, account_number, owner):
        self.account_number = account_number
        self.owner = owner
        self.balance = 0.0

    @abstractmethod
    def deposit(self, amount):
        pass

    @abstractmethod
    def withdraw(self, amount):
        pass

    def get_balance(self):
        return self.balance

class SavingsAccount(Account):
    def deposit(self, amount):
        if amount > 0:
            self.balance += amount
            print(f"Deposited {amount} to Savings Account")
        else:
            print("Deposit amount must be positive")

    def withdraw(self, amount):
        if 0 < amount <= self.balance:
            self.balance -= amount
            print(f"Withdrew {amount} from Savings Account")
        else:
            print("Insufficient funds or invalid amount")

class CheckingAccount(Account):
    def deposit(self, amount):
        if amount > 0:
            self.balance += amount
            print(f"Deposited {amount} to Checking Account")
        else:
            print("Deposit amount must be positive")

    def withdraw(self, amount):
        if 0 < amount <= self.balance:
            self.balance -= amount
            print(f"Withdrew {amount} from Checking Account")
        else:
            print("Insufficient funds or invalid amount")

if __name__ == "__main__":
    # Test SavingsAccount
    savings = SavingsAccount("123", "Alice")
    savings.deposit(1000)
    savings.withdraw(500)
    print(f"Savings Balance: {savings.get_balance()}")

    # Test CheckingAccount
    checking = CheckingAccount("456", "Bob")
    checking.deposit(2000)
    checking.withdraw(1000)
    print(f"Checking Balance: {checking.get_balance()}")
class Loan:
    def __init__(self, loan_id, borrower, amount, interest_rate):
        self.loan_id = loan_id
        self.borrower = borrower
        self.amount = amount
        self.interest_rate = interest_rate
        self.repaid = 0.0

    def make_payment(self, payment):
        if payment > 0:
            self.repaid += payment
            print(f"Payment of {payment} made on Loan {self.loan_id}")
        else:
            print("Payment amount must be positive")

    def outstanding_balance(self):
        total_due = self.amount * (1 + self.interest_rate / 100)
        return total_due - self.repaid

if __name__ == "__main__":
    # Test Loan
    loan = Loan("789", "Charlie", 5000, 5)
    loan.make_payment(1000)
    print(f"Outstanding Balance: {loan.outstanding_balance()}")
class PremiumAccount:
    def __init__(self, account):
        self.account = account
        self.premium_rate = 0.02  # 2% premium for holding balance

    def apply_premium(self):
        premium_amount = self.account.get_balance() * self.premium_rate
        self.account.deposit(premium_amount)
        print(f"Premium of {premium_amount} applied to {self.account.account_number}")

if __name__ == "__main__":
    from account import SavingsAccount

    # Test PremiumAccount
    savings = SavingsAccount("123", "Alice")
    savings.deposit(1000)
    premium = PremiumAccount(savings)
    premium.apply_premium()
    print(f"Savings Balance with Premium: {savings.get_balance()}")
from account import SavingsAccount, CheckingAccount
from loan import Loan
from premium import PremiumAccount

def main():
    # Create Accounts
    savings = SavingsAccount("123", "Alice")
    checking = CheckingAccount("456", "Bob")
    
    # Test Deposits and Withdrawals
    savings.deposit(1000)
    savings.withdraw(500)
    checking.deposit(2000)
    checking.withdraw(1000)
    
    # Print Balances
    print(f"Savings Balance: {savings.get_balance()}")
    print(f"Checking Balance: {checking.get_balance()}")

    # Create and Test Loan
    loan = Loan("789", "Charlie", 5000, 5)
    loan.make_payment(1000)
    print(f"Outstanding Loan Balance: {loan.outstanding_balance()}")

    # Apply Premium to Savings Account
    premium = PremiumAccount(savings)
    premium.apply_premium()
    print(f"Savings Balance with Premium: {savings.get_balance()}")

if __name__ == "__main__":
    main()

Share this article

Stay Updated

Subscribe to our newsletter for new course alerts, learning tips, and exclusive offers.

We respect your privacy. Unsubscribe at any time.

Discussion (0)

Be the first to comment on this article

winstonmhango23

Technical Writer & Developer

Table of Contents

Stay Updated! Join our waitlist to get notified about new courses.

© 2025 .