method
Return random bytes.
Number of random bytes.
String of length length.
This function generates random bytes from a discrete uniform distribution. The generated bytes are independent from the CPU’s native endianness.
>>> 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.4/reference/random/generated/numpy.random.Generator.bytes.html