Python| os.urandom() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
os.urandom()
方法用于生成适合加密使用的大小随机字节的字符串,或者我们可以说此方法生成包含随机字符的字符串。
Syntax: os.urandom(size)
Parameter:
size: It is the size of string random bytes
Return Value: This method returns a string which represents random bytes suitable for cryptographic use.
示例 #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'
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。