diff options
author | Alexander Kabui | 2021-09-27 16:09:46 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-09-27 16:09:46 +0300 |
commit | 62054d914efb4322fba311f968cb27b662aa6806 (patch) | |
tree | f904231c44d87db36e9b794f57373daf6508a11c /gn3/random.py | |
parent | 6f25b8e2b1d1a34c054d325b1c37b303529b8827 (diff) | |
parent | 0cbb6ecde0315b7d6f021cb17406f5e5197e8a05 (diff) | |
download | genenetwork3-62054d914efb4322fba311f968cb27b662aa6806.tar.gz |
fix merge conflicts
Diffstat (limited to 'gn3/random.py')
-rw-r--r-- | gn3/random.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gn3/random.py b/gn3/random.py new file mode 100644 index 0000000..f0ba574 --- /dev/null +++ b/gn3/random.py @@ -0,0 +1,11 @@ +""" +Functions to generate complex random data. +""" +import random +import string + +def random_string(length): + """Generate a random string of length `length`.""" + return "".join( + random.choices( + string.ascii_letters + string.digits, k=length)) |