From edb21c086f144b772dfd7cf08308adde47b96062 Mon Sep 17 00:00:00 2001 From: teresa-m Date: Tue, 14 Nov 2023 11:43:56 +0100 Subject: [PATCH] Update 02-variables.md upper-lower case change Thanks a lot for the great learning materials. I have one suggestion. The original statement upper-case letters are the conventions so we use lower case is ambiguous. I guess this was just mixed up, but if not this would need further explanation in my opinion. --- episodes/02-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/02-variables.md b/episodes/02-variables.md index 561406f8a..5065711c4 100644 --- a/episodes/02-variables.md +++ b/episodes/02-variables.md @@ -185,7 +185,7 @@ print(len('helium')) - Python thinks that upper- and lower-case letters are different, so `Name` and `name` are different variables. -- There are conventions for using upper-case letters at the start of variable names so we will use lower-case letters for now. +- There are conventions for using lower-case letters at the start of variable names so we will use lower-case letters for now. ## Use meaningful variable names.