w3resource

Python: Write a string to a buffer and retrieve the value written, at the end discard buffer memory

Python Operating System Services: Exercise-16 with Solution

Write a Python program to write a string to a buffer and retrieve the value written, at the end discard buffer memory.

Sample Solution:

Python Code :

import io
# Write a string to a buffer
output = io.StringIO()
output.write('Python Exercises, Practice, Solution')
# Retrieve the value written
print(output.getvalue())
# Discard buffer memory
output.close()

Sample Output:

Python Exercises, Practice, Solution

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to get information about the file pertaining to the file mode. Print the information - ID of device containing file, inode number, protection, number of hard links, user ID of owner, group ID of owner, total size (in bytes), time of last access, time of last modification and time of last status change.
Next: Write a Python program to run an operating system command using the os module.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.