From 076b91f668328f832fb4bbc4c33347c811626f10 Mon Sep 17 00:00:00 2001 From: Muhammad Bilal Qureshi Date: Mon, 2 Feb 2026 15:55:12 +0500 Subject: [PATCH] Fix len() output comment in DataTypes. Corrected the output comment for the len() function example. --- Basics/DataTypes/DataTypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Basics/DataTypes/DataTypes.py b/Basics/DataTypes/DataTypes.py index 3956217..6ed83e1 100644 --- a/Basics/DataTypes/DataTypes.py +++ b/Basics/DataTypes/DataTypes.py @@ -74,7 +74,7 @@ ### - `len()`: Length of a string -print(len(word)) # Output: 6 +print(len(word)) # Output: 4 ### - `.lower()` and `.upper()`: Change case