From de0562c101ea7fe1bdc18e31e96fe95d7bcdec93 Mon Sep 17 00:00:00 2001 From: Krunal Gangadhar Kharat <68007121+KKGAMEZ@users.noreply.github.com> Date: Thu, 1 Oct 2020 08:27:29 +0530 Subject: [PATCH 1/2] Update for_loop.py --- for_loop.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/for_loop.py b/for_loop.py index 70aa767..8e3e092 100644 --- a/for_loop.py +++ b/for_loop.py @@ -1,6 +1,8 @@ -l = (1, 3, 4) +list = (1, 3, 4) -for i in l: +for i in list: print(i) + + From 98d9822f99ecfd7dfe2d65695aed3c54b10282e9 Mon Sep 17 00:00:00 2001 From: Krunal Gangadhar Kharat <68007121+KKGAMEZ@users.noreply.github.com> Date: Thu, 1 Oct 2020 08:30:49 +0530 Subject: [PATCH 2/2] Update functions_ex.py --- functions_ex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions_ex.py b/functions_ex.py index 64e4834..1d732f1 100644 --- a/functions_ex.py +++ b/functions_ex.py @@ -1,5 +1,5 @@ def print_this(): - print("Hello World") + print("This print is going to print as it is inside the function") print("Outside of function") print_this()