Computer Science
Fill in the blanks:
The default file-open mode is _________ mode.
Python File Handling
2 Likes
Answer
read
Answered By
1 Like
Related Questions
What is the significance of the seek() method ?
- It seeks the absolute path of the file.
- It tells the current byte position of the file pointer within the file.
- It places the file pointer at a desired offset within the file.
- It seeks the entire content of the file.
The correct syntax of seek() is :
- file_object.seek(offset[, referencepoint])
- seek(offset[, reference_point])
- seek(offset, file_object)
- seek.file_object(offset)
Fill in the blanks:
A _________ governs the type of operations (e.g., read/write/append) possible in the opened file.
Fill in the blanks:
The two types of data files can be _________ files and _________ files.