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) + + 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()