Computer Science
Information stored on a storage device with a specific name is called a ……………
- array
- dictionary
- file
- tuple
Python File Handling
5 Likes
Answer
file
Reason — A file in itself is a bunch of bytes (information) stored on some storage device like hard-disk, thumb-drive etc with a specific name.
Answered By
3 Likes
Related Questions
Name the functions used to read and write in CSV files.
What is the full form of :
- CSV
- TSV
Which of the following format of files can be created programmatically through Python to store some data ?
- Data files
- Text files
- Video files
- Binary files
To open a file c:\ss.txt for appending data, we use
- file = open("c:\\ss.txt", "a")
- file = open("c:\\ss.txt", "rw")
- file = open(r"c:\ss.txt", "a")
- file = open(file = "c:\ss.txt", "w")
- file = open(file = "c:\ss.txt", "w")
- file = open("c:\res.txt")