I\'m trying to generate random 64-bit integer values for integers and floats using Numpy, within the entire range of valid values for that type. To generate ran
For integers you could generate 2 32 bit random numbers and combine them:
a + (b << 32)