From b083e358d6ab744ca27c2d709dd15d389e0ce9e7 Mon Sep 17 00:00:00 2001 From: Michael Rossetti Date: Thu, 19 Sep 2024 17:15:31 -0400 Subject: [PATCH] Update strings.qmd --- docs/notes/python-lang/basic-datatypes/strings.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/python-lang/basic-datatypes/strings.qmd b/docs/notes/python-lang/basic-datatypes/strings.qmd index 54f04c1..d0db4f6 100644 --- a/docs/notes/python-lang/basic-datatypes/strings.qmd +++ b/docs/notes/python-lang/basic-datatypes/strings.qmd @@ -48,7 +48,7 @@ print(message) ``` -In practice, for single line strings, we can prefer to default to double quotes, because it allows us to use single quotes for contractions, whereas the reverse would break the quoting level: +In practice, we might prefer to use double quotes by default. This allows us to use single quotes inside for contractions, whereas this would otherwise break the quoting level: ```{python} message = "It's awesome!"