Skip to main content

Property: when reading a variable isn't just reading a variable


 


Ever felt limited by plain variables in your Python classes? Fear not, the @property decorator swoops in like a superhero to add some superpowers ‍* to your code!

With @property, accessing a variable becomes an action, not just a read. Let's see how it elevates our humble Fraction class:

class Fraction:
  def __init__(self, numerator, denominator):
    self.numerator = numerator
    self.denominator = denominator

  @property
  def value(self):
    """Calculates and returns the actual fraction value."""
    if self.denominator == 0:
      raise ZeroDivisionError("Oops! Denominator can't be zero.")  # Handle division by zero
    return self.numerator / self.denominator

  @value.setter  # Setter for the "value" property
  def value(self, new_value_tuple):
    """Sets the numerator and denominator based on the provided value."""
    numerator, denominator = new_value_tuple 
    self.numerator = numerator
    self.denominator = denominator

 

Usage:

frac1=Fraction(1,2)

print( frac1.value ) #no need to use empty-braces "frac1.value()"

#call the "value" method decorated with @value.getter;

frac1.value = ( 3,4 ) #this is not name binding

#this calls the "value" method decorated with @value.setter and modifies the frac1 object 


interactive example:

https://colab.research.google.com/drive/1eLdmgflqqG2UlUgbOyLzHM_8266T-NMr

Comments

Popular posts from this blog

Getting started with FEOS, the framework for Equation of state by iit/univ Stuttgart and eth/zurich

     🌟 Exploring FEOS: The State-of-the-Art Equation of State Framework by IIT Stuttgart and ETH Zurich 🌟 Hey there, fellow science enthusiasts! 👋 Are you ready to dive into the captivating world of equation of state frameworks? Well, hold onto your lab coats because today, we're exploring FEOS – the cutting-edge framework developed by the brilliant minds at IIT Stuttgart and ETH Zurich! 🚀 ### Unraveling the Mysteries of FEOS 🔍 Equation of state (EOS) plays a pivotal role in various scientific disciplines, ranging from physics and chemistry to material science and engineering. It's the cornerstone for understanding the thermodynamic properties of matter under different conditions. And when it comes to precision and reliability, FEOS stands tall among its peers. 📏 ### The Powerhouse Collaboration: IIT Stuttgart & ETH Zurich 🤝 FEOS is not just another run-of-the-mill framework; it's the result of a powerhouse collaboration between the renowned institutions – IIT ...

creating numerical arrays with logic

  **Title: Navigating Numerical Spaces with NumPy: arange vs linspace vs logspace** When it comes to generating numerical sequences in Python, NumPy offers a plethora of options, each tailored to specific needs. Among these, `arange`, `linspace`, and `logspace` stand out as versatile tools for crafting arrays. Let’s embark on a journey through these functions, exploring their nuances and applications! 🚀 ### The Basics: arange NumPy’s `arange` function is akin to Python’s built-in `range`, but with the added capability of generating arrays with non-integer steps. It’s your go-to tool for creating sequences with regular spacing. ```python import numpy as np # Syntax: np.arange(start, stop, step) arr = np.arange(0, 10, 2) print(arr) # Output: [0 2 4 6 8] ``` think of it as points in an closed/open interval [a,b) with step s between each point  🧩 **Use Case**: When you need control over the step size and want a compact syntax. ### The Uniform Choice: linspace `linspace` divides...

what is @something on a function, i heard it is for decoration?!

  Title: 🎨 Exploring Python Decorators: Adding Magic to Your Code! ✨ Python decorators are like the fairy godmothers of programming—they sprinkle a little magic onto your functions, enhancing them with extra functionality. In this blog post, we'll dive into the enchanting world of decorators, exploring how they work and unleashing their powers with two whimsical examples. **Example 1: The Enigmatic @echo Decorator** Imagine a decorator that echoes the inputs and outputs of a function, adding a touch of sparkle to the console. Behold, the @echo decorator! ```python def echo(func):     def wrapper(*args, **kwargs):         print("✨ Echoing inputs:")         for arg in args:             print(f"\t- {arg}")         result = func(*args, **kwargs)         print("✨ Echoing output:")         print(f"\t- {result}")         return re...