Welcome to CodeYourCraft's Python tutorial! Today, we're diving into the exciting world of self parameters, a concept that will help you write cleaner and more efficient functions. Let's get started!
In Python, a self parameter is a convention used to access the instance of a class within a method. It's like a pointer to the object itself.
class MyClass:
def __init__(self, name):
self.name = name
def greet(self):
print(f"Hello, {self.name}!")In the example above, self is a parameter that we're using to access the instance of the MyClass object. When we create an instance and call the greet method, it will print a greeting with the name we provided during object creation.
Using self parameters allows us to create methods that can interact with the object's attributes directly. It helps to keep our code organized and easy to understand, as each object has its own set of attributes and methods.
Now let's write a class that represents a bank account and has methods to deposit, withdraw, and check the balance.
class BankAccount:
def __init__(self, balance=0):
self.balance = balance
def deposit(self, amount):
self.balance += amount
print(f"Deposited {amount}, new balance: {self.balance}")
def withdraw(self, amount):
if amount > self.balance:
print("Insufficient funds")
else:
self.balance -= amount
print(f"Withdrew {amount}, new balance: {self.balance}")
def check_balance(self):
print(f"Current balance: {self.balance}")Create a BankAccount object and perform some transactions.
my_account = BankAccount(100)
my_account.deposit(50)
my_account.withdraw(75)
my_account.check_balance()Question: What does the self parameter represent in a Python class method?
A: The method name B: The class instance C: The parent class
Correct: B
Explanation: The self parameter represents the instance of the class within a method, allowing us to access and manipulate its attributes.
That's it for today! In the next lesson, we'll explore Python's built-in functions and learn how to use them in our projects. Stay tuned! 🚀
Happy coding! 🎉