File Handling in Python-1

123456789101112131415161718
Across
  1. 4. _____ method of pickle module is used to read data from a binary file.
  2. 5. The readlines() returns a list of lines from the file till _____.
  3. 7. The _____ statement automatically closes the file after the processing on the file gets over.
  4. 8. _____ method of pickle module is used to write an object into binary file.
  5. 10. _____ function is used to force transfer of data from buffer to file.
  6. 11. The _____ function creates a file object which serves as a link to residing on your computer.
  7. 14. The _____ method is used to remove/delete a file.
  8. 16. The _____ method reads 'n' characters from the file.
  9. 18. The_____ method is used to rename the file or folder.
Down
  1. 1. The _____ method writes a list of strings to a file.
  2. 2. The name of the current working directory can be determined using _____ method.
  3. 3. _____ statement is given for importing csv module into your program.
  4. 6. _____ in Python are interpreted as a sequence or stream of bytes stored on some storage media.
  5. 9. method is used for random access of data in a CSV file.
  6. 10. The _____ method of a file object flushes any unwritten information and closes the file object.
  7. 12. A _____ file is a series of 1's and 0's, treated as raw data and read byte-by-byte.
  8. 13. The read() function reads data from the _____ of a file.
  9. 15. _____ format is a text format accessible to all applications across several platforms.
  10. 17. The pickle module produces two main methods called _____ and load for writing and reading operations.
  11. 18. Files in Python can be opened in one of the three modes - _____, _____ and _____.