Open In App

Python | os.supports_bytes_environ object

Last Updated : 07 Jun, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads