Everything you need to know about aguments and their types in Python

Everything you need to know about aguments and their types in Python

Author
winstonmhango23
Published
June 22, 2024
Reading Time
7 min read
Views
384
In Python, functions can take various types of arguments, providing flexibility and power to the language. Understanding these argument types is crucial for writing clean, efficient, and reusable code
def greet(name, age):
  print(f"Hello, {name}! You are {age} years old.")

greet("Alice", 30)  # Output: Hello, Alice! You are 30 years old.
def describe(name, age):
  print(f"{name} is {age} years old.")

describe(age=35, name="David")  # Order doesn't matter here!
def greet(name, age=25):  # "age" has a default value of 25
  print(f"Hello, {name}! You are {age} years old.")

greet("Bob")  # Output: Hello, Bob! You are 25 years old. (Uses default age)
greet("Charlie", 40)  # Output: Hello, Charlie! You are 40 years old.
class BankAccount:
    def __init__(self, account_number, account_holder, *transactions):
        self.account_number = account_number
        self.account_holder = account_holder
        self.transactions = transactions

    def display_info(self):
        print(f"Account Number: {self.account_number}")
        print(f"Account Holder: {self.account_holder}")
        print("Transactions:", self.transactions)

# Example Usage
account = BankAccount("123456", "Alice", 100, -50, 200, -30)
account.display_info()
class BankAccount:
    def __init__(self, account_number, account_holder, **kwargs):
        self.account_number = account_number
        self.account_holder = account_holder
        self.details = kwargs

    def display_info(self):
        print(f"Account Number: {self.account_number}")
        print(f"Account Holder: {self.account_holder}")
        print("Additional Details:", self.details)

# Example Usage
account = BankAccount("123456", "Alice", address="123 Main St", phone="555-1234")
account.display_info()
class BankAccount:
    def __init__(self, account_number, account_holder, balance=0.0):
        self.account_number = account_number
        self.account_holder = account_holder
        self.balance = balance

    def display_info(self):
        print(f"Account Number: {self.account_number}")
        print(f"Account Holder: {self.account_holder}")
        print(f"Balance: {self.balance}")

class SavingsAccount(BankAccount):
    def __init__(self, account_number, account_holder, balance=0.0, interest_rate=0.01):
        super().__init__(account_number, account_holder, balance)
        self.interest_rate = interest_rate

    def display_info(self):
        super().display_info()
        print(f"Interest Rate: {self.interest_rate}")

# Example Usage
savings_account = SavingsAccount("123456", "Alice", 1000.0, interest_rate=0.02)
savings_account.display_info()
class AccountHolder:
    def __init__(self, name, address):
        self.name = name
        self.address = address

    def display_holder_info(self):
        print(f"Name: {self.name}")
        print(f"Address: {self.address}")

class BankAccount:
    def __init__(self, account_number, balance=0.0):
        self.account_number = account_number
        self.balance = balance

    def display_account_info(self):
        print(f"Account Number: {self.account_number}")
        print(f"Balance: {self.balance}")

class BusinessAccount(AccountHolder, BankAccount):
    def __init__(self, name, address, account_number, balance=0.0, business_name=""):
        AccountHolder.__init__(self, name, address)
        BankAccount.__init__(self, account_number, balance)
        self.business_name = business_name

    def display_info(self):
        self.display_holder_info()
        self.display_account_info()
        print(f"Business Name: {self.business_name}")

# Example Usage
business_account = BusinessAccount("Alice", "123 Main St", "123456", 5000.0, business_name="Alice's Bakery")
business_account.display_info()

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 .