What does the function file() is doing and what value is assigned to the variable out ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does the function file() is doing and what value is assigned to the variable out ?

out =file("output.txt","w")

26th Aug 2019, 2:34 PM
Aditya Anupam
Aditya Anupam - avatar
1 Answer
+ 8
here some information about file ope modes: File modes (copies from geeksforgeeks) are 6 access modes in python. Read Only (‘r’) : Open text file for reading. The handle is positioned at the beginning of the file. If the file does not exists, raises I/O error. This is also the default mode in which file is opened. Read and Write (‘r+’) : Open the file for reading and writing. The handle is positioned at the beginning of the file. Raises I/O error if the file does not exists. Write Only (‘w’) : Open the file for writing. For existing file, the data is truncated and over-written. The handle is positioned at the beginning of the file. Creates the file if the file does not exists. Write and Read (‘w+’) : Open the file for reading and writing. For existing file, data is truncated and over-written. The handle is positioned at the beginning of the file. Append Only (‘a’) : Open the file for writing. The file is created if it does not exist. The handle is positioned at the end of the file. The data being written will be inserted at the end, after the existing data. Append and Read (‘a+’) : Open the file for reading and writing. The file is created if it does not exist. The handle is positioned at the end of the file. The data being written will be inserted at the end, after the existing data. See my small tutorial for reading and writing files: https://code.sololearn.com/cESZeFlM1cRR/?ref=app
26th Aug 2019, 2:46 PM
Lothar
Lothar - avatar