import random
# Function to generate a pattern based on Big/Small
def generate_pattern():
# Define the last 5 outcomes as a simple pattern
outcomes = ['Small', 'Big', 'Big', 'Small', 'Big']
# Simulate the next outcome based on the last outcomes pattern
next_outcome = random.choice(outcomes)
return next_outcome
# User input for prediction
user_prediction = input("Predict the next outcome (Big/Small): ")
# Get the pattern's next outcome
predicted_outcome = generate_pattern()
# Output the result
print(f"The next outcome is: {predicted_outcome}")
if user_prediction.lower() == predicted_outcome.lower():
print("Congratulations! You predicted correctly!")
else:
print("Sorry, try again next time.")
Welcome to Wingo Big/Small Prediction Game!
Here is the sequence of the last 5 outcomes:
- Small
- Big
- Big
- Small
- Big
Predict the next outcome (Big/Small): ____
If you predict the correct outcome, you win! Let's see what the next prediction will be.
The next outcome is: [Random Pattern Decision]
Lamborghini Racing Game
Comments