From 1c675e9e2d40fe60b4acd68662de23c65a346006 Mon Sep 17 00:00:00 2001 From: francesca Date: Sat, 8 Nov 2025 22:12:45 +0100 Subject: [PATCH] Fix link to Installing Python tutorial --- python/lesson1/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lesson1/tutorial.md b/python/lesson1/tutorial.md index 4e3677cd..1cb904c6 100644 --- a/python/lesson1/tutorial.md +++ b/python/lesson1/tutorial.md @@ -7,7 +7,7 @@ In this tutorial, we're going to start to work with the basic types of Python: strings (for text) and integers & floats (for numeric values). Notice that in this tutorial you are working in REPL (IDLE). You can find more information -on REPL and how to start Python in your `cmd` or `terminal` in the [Installing Python tutorial](python/lesson0/tutorial.html) . +on REPL and how to start Python in your `cmd` or `terminal` in the [Installing Python tutorial](/python/lesson0/tutorial.html) . ## Hello, World!