Python Final Exam Questions and Answers 100% pass
Python Final Exam Questions and Answers 100% pass Output file - Correct Answer️️ -a file that data is written to Input file - Correct Answer️️ -a file that data is read from Three steps when a program uses a file - Correct Answer️️ -Open the file Process the file Close the file Text file - Correct Answer️️ -contains data that has been encoded as text Binary file - Correct Answer️️ -contains data that has not been converted to text Sequential access - Correct Answer️️ -file read sequentially from beginning to end, can't skip ahead Direct access - Correct Answer️️ -can jump directly to any piece of data in the file Filename extensions - Correct Answer️️ -short sequences of characters that appear at the end of a filename preceded by a period File object - Correct Answer️️ -an object that is associated with a specific file and provides a way for the program to work with that file open function - Correct Answer️️ --used to open a file -creates a file object and associates it with a file on the disk -general format: file_object = open(filename, mode)PDF DOCUMENT Mode - Correct Answer️️ -string specifying how the file will be opened ('r' for reading a file, 'w' for writing, and 'a' for appending) Method - Correct Answer️️ -a function that belongs to an object and performs operations using that object write method - Correct Answer️️ --used to write data to the file -format: file_(string) close method - Correct Answer️️ --used to close a file -format: file_() read method - Correct Answer️️ --file object method that reads entire file contents into memory -only works if file has been opened for reading -contents returned as a string readline method - Correct Answer️️ --file object method that reads a line from the file -line returned as a string, including 'n' string - Correct Answer️️ -a sequence of characters that is used as data read position - Correct Answer️️ -marks the location of the next item that will be read from the file rstrip method - Correct Answer️️ -string method that strips spe
Written for
- Institution
- Python Programming
- Course
- Python Programming
Document information
- Uploaded on
- June 17, 2024
- Number of pages
- 19
- Written in
- 2023/2024
- Type
- Exam (elaborations)
- Contains
- Questions & answers
Subjects
-
python final exam questions and answers 100 passp
Also available in package deal