Files
CHOMPStation2/bot/C_heaortai.py
2024-02-16 10:54:47 +01:00

6 lines
248 B
Python

#Throws a coin, simple.
from random import random
def heaortai(debug,sender): return("Heads" if random() > 0.5 else "Tails")
# Takes 1/6th the time of doing it with random.randint(0,1)
# This file used to be a lot bigger, now it's kind of useless.