Computer Science

Write a program that displays a joke. But display the punchline only when the user presses enter key.
(Hint. You may use input( ))

Python

Python Funda

127 Likes

Answer

print("Why is 6 afraid of 7?")
input("Press Enter")
print("Because 7 8(ate) 9 :-)")

Output

Why is 6 afraid of 7?
Press Enter
Because 7 8(ate) 9 :-)

Answered By

57 Likes


Related Questions