From 1e4f55738e36ee527743cea1114e248902d38bd9 Mon Sep 17 00:00:00 2001 From: Supipi Amarajeeva <148068360+kksua@users.noreply.github.com> Date: Wed, 5 Aug 2026 08:59:54 +0200 Subject: [PATCH] Fix tuple syntax in helloworld.py Correct the tuple example to use parentheses () instead of curly braces {} --- 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..c58cb8218 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))) # Tuple