Created
November 19, 2017 22:39
-
-
Save erikaris/591cb66560fa9f0234755673ca65e85a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = np.random.rand() #return a single Python float | |
b = np.random.rand(2, 3) #return a 2*3 arrays. | |
print(" a = {} \n b = {}".format(a, b)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment