Does Python interpreter load all the file to RAM when it is opened for writing?
with open('file.txt' 'w') as file:
file.write(some_content)
Does Python interpreter load all the file to RAM when it is opened for writing?
with open('file.txt' 'w') as file:
file.write(some_content)