Untitled
unknown
plain_text
2 years ago
1.2 kB
6
Indexable
import random
def flush_toilet():
print("Flushing the Skibidi Toilet...")
def dance():
print("Dancing with the Skibidi Toilet...")
def talk_to_toilet():
responses = [
"The Skibidi Toilet doesn't respond.",
"You hear a faint gurgling sound.",
"The Skibidi Toilet says: 'Skibidi wapapap!'",
"The Skibidi Toilet remains silent."
]
print(random.choice(responses))
def main():
print("Welcome to the Skibidi Toilet Game!")
print("You find yourself in front of the legendary Skibidi Toilet.")
print("What would you like to do?")
while True:
print("\nOptions:")
print("1. Flush the toilet")
print("2. Dance with the toilet")
print("3. Talk to the toilet")
print("4. Exit")
choice = input("Enter your choice: ")
if choice == "1":
flush_toilet()
elif choice == "2":
dance()
elif choice == "3":
talk_to_toilet()
elif choice == "4":
print("Exiting the game. Goodbye!")
break
else:
print("Invalid choice. Please choose again.")
if __name__ == "__main__":
main()
Editor is loading...
Leave a Comment