[ create a new paste ] login | about

Link: http://codepad.org/tkOyyAa9    [ raw code | output | fork ]

Python, pasted on Jul 3:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Quiz 1
# Quote

# Chris Roberts
# 07/01/2020

print(
"""
\t\tFor want of a nail the shoe was lost,
\t\tFor want of a shoe the horse was lost;
\t\tAnd for want of a horse the rider was lost;
\t\tbeing overtaken and slain by the enemy,
\t\tAll for want of care about a horse-shoe nail.
""")
print("\t\t\t\t\t-Benjamin Franklin,\n\t\t\t\t\t'The Way to Wealth' (c.1758)")

input("\n\nPress 'ENTER' If You Agree")


Output:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

		For want of a nail the shoe was lost,
		For want of a shoe the horse was lost;
		And for want of a horse the rider was lost;
		being overtaken and slain by the enemy,
		All for want of care about a horse-shoe nail.

					-Benjamin Franklin,
					'The Way to Wealth' (c.1758)


Press 'ENTER' If You AgreeTraceback (most recent call last):
  Line 17, in <module>
    input("\n\nPress 'ENTER' If You Agree")
EOFError


Create a new paste based on this one


Comments: