If I call os.urandom(64), I am given 64 random bytes. With reference to Convert bytes to a Python string I tried
a = os.urandom(64) a.decode() a.decode(\"utf
this easy way:
a = str(os.urandom(64)) print(F"the: {a}") print(type(a))