From f0c8c60e95e318c09763b600c0bf0fcc45d6a7de Mon Sep 17 00:00:00 2001 From: Rudra_Gamer_432 <02012008gamer@gmail.com> Date: Sun, 12 Apr 2026 01:03:06 +0530 Subject: [PATCH] remove 3 duplicates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit there were 3 duplicates of line 9. addition line 10. subtraction line 11. multiplication and adjusted the spacing in `Output` of `Checking Data Types` dont know why there were duplicates there, if (wasIntentional) { console.log('Sorry!'); } else { console.log('😎'); } --- 01_Day_Introduction/helloworld.py | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/01_Day_Introduction/helloworld.py b/01_Day_Introduction/helloworld.py index d8007868f..febfd8c91 100644 --- a/01_Day_Introduction/helloworld.py +++ b/01_Day_Introduction/helloworld.py @@ -6,9 +6,6 @@ print(2 + 3) # addition(+) print(3 - 1) # subtraction(-) print(2 * 3) # multiplication(*) -print(3 + 2) # addition(+) -print(3 - 2) # subtraction(-) -print(3 * 2) # multiplication(*) print(3 / 2) # division(/) print(3 ** 2) # exponential(**) print(3 % 2) # modulus(%) @@ -16,10 +13,10 @@ # Checking data types -print(type(10)) # Int -print(type(3.14)) # Float -print(type(1 + 3j)) # Complex -print(type('Asabeneh')) # String -print(type([1, 2, 3])) # List +print(type(10)) # Int +print(type(3.14)) # Float +print(type(1 + 3j)) # Complex +print(type('Asabeneh')) # String +print(type([1, 2, 3])) # List print(type({'name': 'Asabeneh'})) # Dictionary -print(type({9.8, 3.14, 2.7})) # Tuple +print(type({9.8, 3.14, 2.7})) # Tuple