From 1cae5fd698c2bf00e6e4576d17dccb5cd1904945 Mon Sep 17 00:00:00 2001 From: Bharath Shakthivel <75258943+BharathShakthivel@users.noreply.github.com> Date: Sat, 18 Apr 2026 22:21:23 +0100 Subject: [PATCH] Fix type comment for set and tuple in helloworld.py --- 01_Day_Introduction/helloworld.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/01_Day_Introduction/helloworld.py b/01_Day_Introduction/helloworld.py index d8007868f..580af46ee 100644 --- a/01_Day_Introduction/helloworld.py +++ b/01_Day_Introduction/helloworld.py @@ -22,4 +22,5 @@ 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 +print(type((9.8, 3.14, 2.7))) # Tuple