zoria/src/rand.py

7 lines
108 B
Python

# random.randint wrapper
import random
def rand(*args):
random.seed()
return random.randint(*args)