操作係統模塊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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。