Python os.urandom()方法
Python os.urandom()方法是用来生成一个大小为随机字节的字符串,适合密码学使用,或者我们可以说这个方法生成一个包含随机字符的字符串。
os.urandom() 语法
os.urandom(size)
os.urandom() 参数
size:字符串随机字节的大小
返回值:该方法返回一个字符串,该字符串表示适合加密使用的随机字节。
os.urandom() 例1
# Python program to explain os.urandom() method
# importing os module
import os
# Declaring size
size = 5
# Using os.urandom() method
result = os.urandom(size)
# Print the random bytes string
# Output will be different everytime
print(result)
输出:
b'\xe2\xaf\xbc:\xdd'