From 6c30ff707846a0891e9c19346d335fcc3e629a49 Mon Sep 17 00:00:00 2001 From: Prince Kakadiya Date: Wed, 4 Feb 2026 22:54:13 +0530 Subject: [PATCH] Fix incorrect data type comment (set vs 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..134f0122a 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