질문이요!!
, 소 영님이 작성Unit 9.4 에 심사문제 인데요
print("""'Python' is a \"programming language\"
that lets you work quickly
and
integrate systems more effectively.""")
이 코드는 실행이 되지 않는 코드라고 안내문구가 뜨고
s="""'Python' is a \"programming language\"
that lets you work quickly
and
integrate systems more effectively."""
print(s)
이 코드는 테스트에 통과하지 못했다고 뜨네요
둘다 실행돌려보니 위에는 잘만 실행되고 위아래 같은 결과 나오네요
뭐가 문제인걸까요?