Python os.supports_bytes_env
Python中的os. supports_bytes_environmenton用于检查环境的本地操作系统类型是否为字节。例如,Windows没有将字节作为其环境的本机OS类型。所以它的值在Windows上为False。
语法:os.supports_bytes_env
参数:它是一个不可调用的对象。因此,不需要参数。
返回类型:该对象根据环境的本机OS类型是否为字节返回一个bool值True或False。
示例1
使用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