Python | os.getcwdb() method Last Updated : 07 Jun, 2019 Comments Improve Suggest changes Like Article Like 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. All functions in os module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system. os.getcwdb() method in Python is bytes version of os.getcwd() method. This method returns current working directory (CWD). Syntax: os.getcwdb() Parameter: No parameter is required. Return Type: This method returns a bytestring which represents the current working directory. Code: Use of os.getcwdb() method to get current working directory Python3 # Python program to explain os.getcwdb() method # importing os module import os # Get the current working # directory (CWD) cwd = os.getcwdb() # Print the current working # directory (CWD) print("Current working directory:", cwd) Output: Current working directory: b'/home/ihritik' Comment More infoAdvertise with us Next Article Python | os.getcwdb() method I ihritik Follow Improve Article Tags : Python python-os-module Practice Tags : python Similar Reads Python | os.getcwd() method 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. All functions in os module raise OSError in the case of invalid or inaccessible f 2 min read Python | os.getsid() method 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. All functions in os module raise OSError in the case of invalid or inaccessible f 2 min read Python | os.getenvb() method 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.getenvb() method in Python is bytes version of os.getenv() method. This method 3 min read Python | os.getpgid() method 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. All functions in os module raise OSError in the case of invalid or inaccessible f 3 min read Python | os.getppid() method 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.getppid() method in Python is used to get the parent process ID of the current 2 min read Like