操作系统模块Python中提供了与操作系统交互的函数。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关函数的可移植方式。
操作系统.supports_bytes_environPython中的object用于检查环境的本机操作系统类型是否为字节。
一些方法和对象的函数,例如操作系统.getenvb()和os.environb仅当以下值时才在 Python 中可用操作系统.supports_bytes_environ为真。
例如:环境的本机操作系统类型Windows不是字节。所以操作系统.supports_bytes_environ为 False,因此,操作系统.getenvb()和os.environb在 Windows 上不可用。
用法:操作系统.supports_bytes_environ
参数:这是一个不可调用的对象。因此不需要任何参数
返回类型:该方法返回 bool 类的布尔值。如果环境的本机操作系统类型是字节,则此方法返回 True,否则返回 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
相关用法
- Python os.supports_bytes_environ用法及代码示例
- Python os.supports_fd用法及代码示例
- Python os.supports_follow_symlinks用法及代码示例
- Python os.supports_dir_fd用法及代码示例
- Python os.set_inheritable()用法及代码示例
- Python os.sendfile()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.sched_setaffinity()用法及代码示例
- Python os.sched_getaffinity()用法及代码示例
- Python os.sched_rr_get_interval()用法及代码示例
- Python os.sched_get_priority_max()用法及代码示例
- Python os.sched_get_priority_min()用法及代码示例
- Python os.scandir()用法及代码示例
- Python os.setgroups()用法及代码示例
- Python os.setregid()用法及代码示例
- Python os.setreuid()用法及代码示例
- Python os.stat()用法及代码示例
- Python os.statvfs()用法及代码示例
- Python os.strerror()用法及代码示例
- Python os.symlink()用法及代码示例
- Python os.sync()用法及代码示例
- Python os.sysconf()用法及代码示例
- Python os.system()用法及代码示例
- Python os.scandir用法及代码示例
- Python os.stat用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.supports_bytes_environ object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。