{}
๐ŸŽƒ THIS OCTOBER
Build spooky. Win treats. Get featured on the Wall. Join Challenge
๐ŸŽƒ THIS OCTOBER
Build spooky. Win treats. Get featured. Join Challenge
run-icon
main.py
import random import time # Display the title in simple big font print(" ๐Ÿ‡งโ€Œ๐Ÿ‡ณโ€Œ ๐Ÿ‡ฑโ€Œ๐Ÿ‡ฆโ€Œ๐Ÿ‡ธโ€Œ๐Ÿ‡นโ€Œ ๐Ÿ‡ฐโ€Œ๐Ÿ‡ฎโ€Œ๐Ÿ‡ณโ€Œ๐Ÿ‡ฌโ€Œ") print(" ๐Ÿ‡ธ๐Ÿ‡จ๐Ÿ‡ท๐Ÿ‡ฎ๐Ÿ‡ต๐Ÿ‡น ๐Ÿ‡น๐Ÿ‡ด๐Ÿ‡ด๐Ÿ‡ฑ\n") # List of possible results results = ["๐Ÿ‘‰Big๐Ÿ‘ˆ", "๐Ÿ‘‰Small๐Ÿ‘ˆ", "๐Ÿ‘‰ Red ๐Ÿ”ด ๐Ÿ‘ˆ", "๐Ÿ‘‰ Green ๐ŸŸข ๐Ÿ‘ˆ"] # Function to get prediction def get_prediction(): # Asking user for the last 3 numbers of the period number period_number = input("Enter last 3 digits of period number: ") # Simulating checking process for i in range(10, 110, 10): print(f"\nChecking {i}...", end="", flush=True) time.sleep(0.5) # Randomly selecting a result prediction = random.choice(results) # Showing the prediction result print(f"\n\nNEXT PREDICTION IS:- {prediction}") # Execute the function get_prediction()
Output