numpy.random.Generator.bytes
method
- random.Generator.bytes(length)
-
Return random bytes.
- Parameters:
-
- lengthint
-
Number of random bytes.
- Returns:
-
- outbytes
-
String of length
length.
Notes
This function generates random bytes from a discrete uniform distribution. The generated bytes are independent from the CPU’s native endianness.
Examples
>>> rng = np.random.default_rng() >>> rng.bytes(10) b'\xfeC\x9b\x86\x17\xf2\xa1\xafcp' # random
© 2005–2024 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/2.0/reference/random/generated/numpy.random.Generator.bytes.html