From 45144d9beae87d6a7a34459099f22c7454c2109a Mon Sep 17 00:00:00 2001 From: Jennifer Rinker <rink@win.dtu.dk> Date: Mon, 25 Sep 2017 16:40:04 +0200 Subject: [PATCH] initial upload of joe_bob --- joe_bob.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 joe_bob.py diff --git a/joe_bob.py b/joe_bob.py new file mode 100644 index 0000000..208fdfc --- /dev/null +++ b/joe_bob.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +"""Joe Bob writes the best functions...in Python 2.7 and NumPy 1.11 +""" + +import numpy as np + +num = np.random.random_integers(0, high=100, size=1)[0] +print 'Your random number is...' + str(num) + -- GitLab