EMF_Camp_Badge/lib/random.py

10 lines
161 B
Python
Raw Normal View History

2018-08-05 17:14:31 -04:00
"""Library to generate random numbers"""
___license___ = "MIT"
import os
# todo: write an actual useful function
def rand():
return int(os.urandom(1)[0])