Python| os.supports_bytes_environ 对象
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.supports_bytes_environ对象用于检查环境的本机 OS 类型是否为字节。
仅当os.supports_bytes_environ的值为 True 时,某些方法和对象(如os.getenvb()和os.environb )在Python中才可用。
例如: Windows上环境的本机 OS 类型不是字节。因此os.supports_bytes_environ为 False,因此os.getenvb()和os.environb在 Windows 上不可用。
Syntax: os.supports_bytes_environ
Parameters: This is a non-callable object. Hence, no parameter is required
Return Type: This method returns a Boolean value of class bool. This method returns True if the native OS type of the environment is bytes otherwise returns False.
代码:使用 os.supports_bytes_environ 对象
Python3
# 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 the result
print(isBytes)
True