Funny Joke in python

--

import random

def make_girl_laugh():
jokes = [
“Why don’t scientists trust atoms? Because they make up everything!”,
“What do you call fake spaghetti? An impasta!”,
“Why did the scarecrow win an award? Because he was outstanding in his field!”,
“Why don’t skeletons fight each other? They don’t have the guts!”,
“I told my wife she was drawing her eyebrows too high. She looked surprised!”,
“Why did the bicycle fall over? Because it was two-tired!”,
“What did the zero say to the eight? Nice belt!”
]

# Pick a random joke
selected_joke = random.choice(jokes)
print(“Here’s a joke for you:”)
print(selected_joke)

# Run the program
make_girl_laugh()

--

--

TechVerse Chronicles
TechVerse Chronicles

Written by TechVerse Chronicles

Python learner, experienced banker, dedicated father, and loving son, on a journey of growth and discovery. Passionate about coding and family life.

No responses yet