#You will get an error if you use double quotes inside a string
#that is surrounded by double quotes:
txt = "We are the so-called "Vikings" from the north."
#To fix this problem, use the escape character ":
txt = "We are the so-called "Vikings" from the north."
#Output: We are the so-called "Vikings" from the north.