Files
Aurora-Old/bot/C_heaortai.py
2014-03-11 09:03:52 +02: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.