Python | os.writev() method Last Updated : 29 Jun, 2019 Summarize Comments Improve Suggest changes Share 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. os.writev() method in Python is used to write the contents of specified buffers to the specified file descriptor. Here, buffers are sequence of mutable bytes-like objects. Buffers are processed in the specified order. The entire content of first buffer is written before proceeding to the second buffer, and so on. A file descriptor is small integer value that corresponds to a file that has been opened by the current process. It is used to perform various lower level I/O operations like read, write, send etc. Note: os.writev() method is only available on UNIX platforms. Syntax: os.writev(fd, buffers) Parameters: fd: A file descriptor which is to be written. buffers: A sequence of mutable bytes-like objects containing the data to be written to the specified file descriptor. Return Type: This method returns an integer value which represents the number of bytes actually written. Code: Use of os.writev() method to write contents of buffers to a file Python3 # Python program to explain os.writev() method # import os module import os # File path path = "./file2.txt" # Create a file and get the # file descriptor associated # with it using os.open() method fd = os.open(path, os.O_CREAT | os.O_WRONLY) # Bytes-like objects # the data to be written in the file buffer1 = bytearray(b"GeeksForGeeks: ") buffer2 = bytearray(b"A computer science portal ") buffer3 = bytearray(b"for geeks") # write the data contained in # bytes-like objects # to the file descriptor fd # using os.writev() method numBytes = os.writev(fd, [buffer1, buffer2, buffer3]) # print the content of file with open(path) as f: print(f.read()) # Print the number of bytes actually written print("Total Number of bytes actually written:", numBytes) Output: GeeksForGeeks: A computer science portal for geeks Total Number of bytes actually written: 50 Comment More infoAdvertise with us Next Article Python | os.write() method I ihritik Follow Improve Article Tags : Python python-os-module Practice Tags : python Similar Reads Python | os.write() 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.write() method in Python is used to write a bytestring to the given file descr 2 min read Python | os.readv() 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.readv() method in Python is used to read data from a file indicated by the spe 3 min read Python | os.read() 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.read() method in Python is used to read at most n bytes from the file associat 2 min read Python | os.truncate() 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.truncate() method in Python is used to truncate the file indicated by the spec 4 min read Python | os.truncate() method os.truncate() method truncates the file corresponding to the path so that it is at the most length bytes in size. This function can support file descriptors too. In this article, we will learn about Python os.truncate() method. os.truncate() Method Syntax in PythonSyntax: os.truncate(path, length) P 3 min read Python | os.truncate() method os.truncate() method truncates the file corresponding to the path so that it is at the most length bytes in size. This function can support file descriptors too. In this article, we will learn about Python os.truncate() method. os.truncate() Method Syntax in PythonSyntax: os.truncate(path, length) P 3 min read Like