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]
अगले 24 घंटों में प्रदेश के इन 10 जिलों में सर्द हवाओं के साथ होगी मूसलाधार बारिश, मौसम विभाग ने जारी किया अलर्ट
Skip to content Men अगले 24 घंटों में प्रदेश के इन 10 जिलों में सर्द हवाओं के साथ होगी मूसलाधार बारिश, मौसम विभाग ने जार December 17, 2023 by MP Weather Today 17 December 2023: प्रदेश के वातावरण में पुनः तीव्रता का दौर देखने को मिल रहा हैं। जहां परिवर्तन का क्रम फिर से देखने को मिला हैं। जहां प्रदेश के कई जिलों में मेघों का डेरा देखने को मिलने वाला हैं। मौसम कार्यालय से मिली सूचना के मुताबिक राजस्थान के उत्तर वेस्टर्न भाग में एक चक्रवात परिसंचरण एक्टिव हो गया है और यह मौसम प्रणाली बेहद ज्यादा मजबूत है, जिसके कारण प्रदेश में कल सायंकाल से ही कई जिलों में मेघों ने अपना तांता लगा लिया है। जिसके परिणाम स्वरूप आज और आगामी दिनों में 1 से 2 दिनों तक प्रदेश में छिटपुट स्थानों पर मामूली से भारी वर्षा और रिमझिम बौछारें पड़ने का अलर्ट जाता दिया गया हैं। जिसके चलते दिन के पारे में भारी कमी रिकॉर्ड की जाएगी। लेकिन मेघों के आने से रात्रि के पारे में जो कमी रिकॉर्ड की जा रही थी, वह अभी रुक सी गई हैं। मगर जैसे ही यह तंत्र दुर्बल होकर समाप्त हो जाएगा, प्रदेश में फिर से एक बार तूफानी स...
Comments