From 49f102c91f8926ebe9ab18b39ce08a0a81f65cfd Mon Sep 17 00:00:00 2001 From: harsh2084 Date: Sun, 14 Apr 2024 13:19:15 +0530 Subject: [PATCH] made a change in faulty code in escaape sequence characters --- 05-Day5-Comments-and-Print/.tutorial/Tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/05-Day5-Comments-and-Print/.tutorial/Tutorial.md b/05-Day5-Comments-and-Print/.tutorial/Tutorial.md index 857a5f6..3722592 100644 --- a/05-Day5-Comments-and-Print/.tutorial/Tutorial.md +++ b/05-Day5-Comments-and-Print/.tutorial/Tutorial.md @@ -100,8 +100,8 @@ An escape sequence character is a backslash `\` followed by the character you An example of a character that cannot be directly used in a string is a double quote inside a string that is surrounded by double quotes: ```python -print("This doesnt "execute") -print("This will \" execute") +print("This doesnt "execute") #this won't execute +print("This will \" execute\" ") #this will execute ``` # More on Print statement