From c3d8b807e6d366015ad16e86e606fbc1fe4219fd Mon Sep 17 00:00:00 2001 From: KK <58529914+kk-gjyang@users.noreply.github.com> Date: Thu, 12 Mar 2020 16:56:48 -0300 Subject: [PATCH] Missing a single quote --- 8-string_format.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/8-string_format.md b/8-string_format.md index 4aa0abc..20d67ca 100644 --- a/8-string_format.md +++ b/8-string_format.md @@ -3,7 +3,7 @@ Create a string in Python: -`name = 'will` +`name = 'will'` Create a string with single quotes in Python: @@ -47,4 +47,4 @@ Code to use variable substitution with the string format method: item = 'ball' color = 'red' print("Will's {0} is {1}".format(item, color)) -``` \ No newline at end of file +```