Friday, May 8, 2026
HomeLanguagesPython | os.supports_bytes_environ object

Python | os.supports_bytes_environ object

OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.

os.supports_bytes_environ in Python checks whether native OS type of the environment is bytes or not. For example, Windows do not has bytes as their native OS type of the environment. So its value will be False on Windows.

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.

Code: Use of os.supports_bytes_environ to check whether native OS type of the environment is bytes or not.




# 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)


Output:

True
Last Updated :
07 Jun, 2019
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12106 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6962 POSTS0 COMMENTS