📜  Python| os.supports_bytes_environ 对象

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

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 上不可用。

代码:使用 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