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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/os/python-os-exercise-16.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics