diff --git a/curriculum/challenges/english/blocks/lecture-classes-and-objects/6874b7d3b286c538b39d0c25.md b/curriculum/challenges/english/blocks/lecture-classes-and-objects/6874b7d3b286c538b39d0c25.md index 892df9af129..77b503063a7 100644 --- a/curriculum/challenges/english/blocks/lecture-classes-and-objects/6874b7d3b286c538b39d0c25.md +++ b/curriculum/challenges/english/blocks/lecture-classes-and-objects/6874b7d3b286c538b39d0c25.md @@ -17,7 +17,7 @@ Think of special methods as the directors of the activities between a person pro Remember, you don't need to call special methods directly. Instead, Python automatically calls them when certain actions happen. These operations include: -- **Arithmetic operations like addition, subtraction, multiplication, division, and others**. In addition, `__add__()` is called, `__sub__()` for subtraction, `__mul__()` for multiplication, and `__truediv__()` for division. +- **Arithmetic operations like addition, subtraction, multiplication, division, and others**. For addition, `__add__()` is called, `__sub__()` for subtraction, `__mul__()` for multiplication, and `__truediv__()` for division. - **String operations like concatenation, repetition, formatting, and conversion to text**. `__add__()` is called for concatenation, `__mul__()` for repetition, `__format__()` for formatting, `__str__()` and `__repr__()` for text conversion, and so on. diff --git a/curriculum/challenges/english/blocks/lecture-classes-and-objects/6908d38f7cccc31602743340.md b/curriculum/challenges/english/blocks/lecture-classes-and-objects/6908d38f7cccc31602743340.md index 53fede22014..99e385edbcf 100644 --- a/curriculum/challenges/english/blocks/lecture-classes-and-objects/6908d38f7cccc31602743340.md +++ b/curriculum/challenges/english/blocks/lecture-classes-and-objects/6908d38f7cccc31602743340.md @@ -211,7 +211,7 @@ And that's how you can handle attributes dynamically! ## --text-- -**What does the** `getattr()` **function in Python allow you to do?** +What does the `getattr()` function in Python allow you to do? ## --answers--