diff --git a/joe_bob.py b/joe_bob.py new file mode 100644 index 0000000000000000000000000000000000000000..208fdfc4de8c33a9af2870a45748e95ce89aa862 --- /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) +