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
128 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
58 Likes
Related Questions
Write the program with maximum three lines of code and that assigns first 5 multiples of a number to 5 variables and then print them.
Write a program to read today's date (only del part) from user. Then display how many days are left in the current month.
Write a program that generates the following output :
5
10
9
Assign value 5 to a variable using assignment operator (=) Multiply it with 2 to generate 10 and subtract 1 to generate 9.Modify above program so as to print output as 5@10@9.