118k views
2 votes
Write a program to output the following quote by Edsger W. Dijkstra:

"Computer Science is no more about computers
than astronomy is about telescopes"
- Edsger W. Dijkstra
Hint: Remember that the escape characters \\ and \" can be used to create new lines and quotation marks in your code.

User ErocM
by
4.2k points

1 Answer

3 votes

In python 3.8:

print("\"Computer Science is no more about \\computers\\than astronomy is about telescopes\"\\-Edsger W. Dijkstra")

I hope this helps!

User DbJones
by
4.0k points