따옴표 안에 문자를 넣어서 출력하고 싶은 경우, 예를 들어서 "Python is fun" 같은 경우는 이스케이프 문자를 사용하면 됩니다.
print(""" Python is fun""") 대신에 print(""Python is fun "")