mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
6 lines
248 B
Python
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.
|