📜  Python| os.supports_bytes_environ 对象

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

Python| os.supports_bytes_environ 对象

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

Python中的os.supports_bytes_environ检查环境的本机操作系统类型是否为字节。例如, Windows没有字节作为其环境的本机操作系统类型。所以它的值在Windows上将是 False 。

代码:使用 os.supports_bytes_environ 检查环境的本机操作系统类型是否为字节。
# Python program to explain os.supports_bytes_environ object 
    
# importing os module 
import os
  
# check whether the native
# OS type of the environment
# is bytes or not.
isBytes = os.supports_bytes_environ
  
# Print result
print(isBytes)
输出:
True