From b594e9570ae39604463cbcb5377768d08483b9ca Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Wed, 6 Dec 2023 22:58:09 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- python_basics/programming_recommendations/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_basics/programming_recommendations/README.md b/python_basics/programming_recommendations/README.md index 562fb1d..f013203 100644 --- a/python_basics/programming_recommendations/README.md +++ b/python_basics/programming_recommendations/README.md @@ -14,7 +14,7 @@ Questions to [David Rotermund](mailto:davrot@uni-bremen.de) # The recommendations -*Comparisons to singletons like None should always be done with is or is not, never the equality operators. +* Comparisons to singletons like None should always be done with is or is not, never the equality operators. *Use is not operator rather than not ... is. While both expressions are functionally identical, the former is more readable and preferred: ```python