From 76b49149bfbd38a115b2eed0a5cc25d3dbc4c0c4 Mon Sep 17 00:00:00 2001 From: Ahsan Ullah Burki <106394887+Ahsan-Burki2126@users.noreply.github.com> Date: Thu, 7 May 2026 00:21:20 +0500 Subject: [PATCH] in the type checks the "set" comment said "tuple" but its actually a set not a tuple. --- 01_Day_Introduction/helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_Day_Introduction/helloworld.py b/01_Day_Introduction/helloworld.py index d8007868f..f9ce72b2e 100644 --- a/01_Day_Introduction/helloworld.py +++ b/01_Day_Introduction/helloworld.py @@ -22,4 +22,4 @@ 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})) # set