just testin# random_joke.py import random
jokes = [ "Why don't skeletons fight each other? Because they don't have the guts! ππ", "I told my computer I needed a break, and now it wonβt stop sending me Kit-Kats. π«", "Why did the math book look sad? Because it had too many problems. βπ", "I asked the librarian if the library had books on paranoia... she whispered, 'They're right behind you.' π", ]
print("π Random Joke Generator π") input("Press Enter to get a random joke...")
joke = random.choice(jokes) print("\n" + joke)g github