문제 > error (큰따옴표가 중복으로 사용됨) txt = "We are the so-called "Vikings" from the north." 해결 txt = "We are the so-called \"Vikings\" from the north." txt = 'We are the so-called "Vikings" from the north.' * 그 외 \' Single Quote \\ Backslash \n New Line \r Carriage Return \t Tab \b Backspace \f Form Feed \ooo Octal value \xhh Hex value www.w3schools.com/python/python_strings_escape.asp