

So when you need to change any text file or just to work with them in python you need to load that file into primary memory. Primary and Secondary memory every file that you saved or anyone saved is on secondary memory cause any data in primary memory is deleted when the computer is powered off. There are two kinds of memory in a computer i.e. The data being written will be inserted at the end, after the existing data. The handle is positioned at the end of the file. The file is created if it does not exist. Append and Read (‘a+’) : Open the file for reading and writing.Append Only (‘a’): Open the file for writing.The handle is positioned at the beginning of the file. For an existing file, data is truncated and over-written. Write and Read (‘w+’) : Open the file for reading and writing.Creates the file if the file does not exist.


For the existing files, the data is truncated and over-written.

DevOps Engineering - Planning to Production.Python Backend Development with Django(Live).Android App Development with Kotlin(Live).Full Stack Development with React & Node JS(Live).Java Programming - Beginner to Advanced.Data Structure & Algorithm-Self Paced(C++/JAVA).Data Structures & Algorithms in JavaScript.Data Structure & Algorithm Classes (Live).
