From 84e4c876fc520448aa2f6a6df89bec073f61c572 Mon Sep 17 00:00:00 2001 From: Dheeraj Aggarwal Date: Tue, 20 Jan 2026 17:49:57 +0530 Subject: [PATCH] Day1: added name --- ch03-first-python-program/2-screw-things-up.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch03-first-python-program/2-screw-things-up.py b/ch03-first-python-program/2-screw-things-up.py index ba0b1c8..84d1c8d 100755 --- a/ch03-first-python-program/2-screw-things-up.py +++ b/ch03-first-python-program/2-screw-things-up.py @@ -4,7 +4,7 @@ # Exercise 1 # The following line won't run because of a syntax error -print("hi) +print("hi") # We didn't close the double quotes at the end of the string. # The line above needed to have been: @@ -15,7 +15,7 @@ ''' The following lines won't run properly, even if the syntax error in the line above is corrected, because of a run-time error ''' -print(hello) +print("hello") # We meant to print the string "hello"; # a variable named 'hello' doesn't exist yet.