Python| os.supports_bytes_environ 对象
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.supports_bytes_environ
检查环境的本机操作系统类型是否为字节。例如, Windows没有字节作为其环境的本机操作系统类型。所以它的值在Windows上将是 False 。
Syntax: os.supports_bytes_environ
Parameter: It is a non-callable object. Hence, no parameter is required.
Return Type: This object returns a bool value True of False on the basis of whether native OS type of the environment is bytes or not.
代码:使用 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
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。