From 244c3407e645fbd7e1173b91a3712733b6a5dda0 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Fri, 29 Dec 2023 15:24:47 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- python_basics/assert/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_basics/assert/README.md b/python_basics/assert/README.md index 813b5ea..a63da15 100644 --- a/python_basics/assert/README.md +++ b/python_basics/assert/README.md @@ -58,7 +58,7 @@ AssertionError Traceback (most recent call last) AssertionError: ``` -or with expression 2: +or with expression 2 (**Note: this can be a f-string!!!**): ```python assert 1 == 2, "1 should be the same as 2"