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"