From dc9db6eaff52436cf6af172b5c3f34fe12acee1c Mon Sep 17 00:00:00 2001 From: Leodanis Pozo Ramos Date: Tue, 28 Apr 2026 17:57:51 +0000 Subject: [PATCH 1/2] Fix naming in python-built-in-functions samples - fibonacci.py: rename class Fibonaccish to Fibonacci - shapes.py: rename Square parameter length to side --- python-built-in-functions/fibonacci.py | 2 +- python-built-in-functions/shapes.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python-built-in-functions/fibonacci.py b/python-built-in-functions/fibonacci.py index cc56ebed4a..82c95ad3a7 100644 --- a/python-built-in-functions/fibonacci.py +++ b/python-built-in-functions/fibonacci.py @@ -1,4 +1,4 @@ -class Fibonaccish: +class Fibonacci: def __init__(self, initial_value=1): self._cache = [0, initial_value] diff --git a/python-built-in-functions/shapes.py b/python-built-in-functions/shapes.py index 2c1c871552..26fa259208 100644 --- a/python-built-in-functions/shapes.py +++ b/python-built-in-functions/shapes.py @@ -11,5 +11,5 @@ def perimeter(self): class Square(Rectangle): - def __init__(self, length): - super().__init__(length, length) + def __init__(self, side): + super().__init__(side, side) From be2754e41ff193e14f6eb80fc9cd86c2b6e59638 Mon Sep 17 00:00:00 2001 From: Leodanis Pozo Ramos Date: Tue, 28 Apr 2026 18:03:59 +0000 Subject: [PATCH 2/2] Update README to match new tutorial title --- python-built-in-functions/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-built-in-functions/README.md b/python-built-in-functions/README.md index 6bf952a0df..e4c6a04226 100644 --- a/python-built-in-functions/README.md +++ b/python-built-in-functions/README.md @@ -1,3 +1,3 @@ -# Python's Built-in Functions: A Complete Exploration +# Python Built-in Functions: A Complete Guide -This folder provides the code examples for the Real Python tutorial [Python's Built-in Functions: A Complete Exploration](https://realpython.com/python-built-in-functions/). +This folder provides the code examples for the Real Python tutorial [Python Built-in Functions: A Complete Guide](https://realpython.com/python-built-in-functions/).