write a program in Python language that displays a joke . but display the punchline only when the user press enter key.(hint:- u may use input())
Answers
Answered by
48
print('What do you get when you cross a snowman with a vampire?')
2. input()
3. print('Frostbite!')
4. print()
5. print('What do dentists call an astronaut\'s cavity?')
6. input()
7. print('A black hole!')
8. print()
9. print('Knock knock.')
10. input()
11. print("Who's there?")
12. input()
13. print('Interrupting cow.')
14. input()
15. print('Interrupting cow wh', end='')
16. print('-MOO!')
add to brainlist
2. input()
3. print('Frostbite!')
4. print()
5. print('What do dentists call an astronaut\'s cavity?')
6. input()
7. print('A black hole!')
8. print()
9. print('Knock knock.')
10. input()
11. print("Who's there?")
12. input()
13. print('Interrupting cow.')
14. input()
15. print('Interrupting cow wh', end='')
16. print('-MOO!')
add to brainlist
dragonride1:
please its urgent
consider max. limit of letters as 15 for input string.
^^ The output string should not display any other characters/numbers or any message except the output string
Answered by
15
Answer:
Explanation:
Answer =input("press enter key to read a joke ")
print("this is fantastic joke of joke ")
Similar questions