📜  Python| os.urandom() 方法

📅  最后修改于: 2022-05-13 01:54:19.812000             🧑  作者: Mango

Python| os.urandom() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

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'