diff --git a/exercises/02450Toolbox_Python/Scripts/__pycache__/ex1_5_3.cpython-310.pyc b/exercises/02450Toolbox_Python/Scripts/__pycache__/ex1_5_3.cpython-310.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..e70eecd357531790adec7d0e987a6a93efecb97a
Binary files /dev/null and b/exercises/02450Toolbox_Python/Scripts/__pycache__/ex1_5_3.cpython-310.pyc differ
diff --git a/exercises/02450Toolbox_Python/Scripts/ex0_4_2.py b/exercises/02450Toolbox_Python/Scripts/ex0_4_2.py
index 38b97db2e61968341e9372c59f2ed5236d23db3d..f3df98f855cc23b6488dfda6c06d168725f4ec24 100644
--- a/exercises/02450Toolbox_Python/Scripts/ex0_4_2.py
+++ b/exercises/02450Toolbox_Python/Scripts/ex0_4_2.py
@@ -2,11 +2,12 @@
 #
 
 ## Option I
-# Standard python code will look like the 4 lines below
+# Standard python code will look like the 4 code lines below
 # and this is the way all scripts are 
 # displayed/implemented in this course
 #
-# To run it you need to press the run symbol or F5 or Ctrl+F5
+# To run the whole file you need to press 
+# the run symbol, F5 or Ctrl+F5 (debug)
 #
 a = 1
 print(a)
@@ -41,4 +42,4 @@ print(b)
 # If you want this behavior you simply add the #%% or #%%[markdown] to the provided
 # scripts in for you useful places.
 #
-# %%
+
diff --git a/exercises/02450Toolbox_Python/Scripts/ex1_5_3.py b/exercises/02450Toolbox_Python/Scripts/ex1_5_3.py
index cf1fbacb5e0999d0fd9cb89111f385d21b87db22..8cc55f224d651a0f85690a043f0dec8679b2f423 100644
--- a/exercises/02450Toolbox_Python/Scripts/ex1_5_3.py
+++ b/exercises/02450Toolbox_Python/Scripts/ex1_5_3.py
@@ -38,5 +38,5 @@ classNames = iris_mat["classNames"]
 # Loading the Iris data from the .mat-file was quite easy, because all the work
 # of putting it into the correct format was already done. This is of course
 # likely not the case for your own data, where you'll need to do something
-# similar to the two previous exercises. We will, however, sometimes in the
+# similar yourself. We will, however, sometimes in the
 # course use .mat-files in the exercises.