19.9. Chapter Concept Summary

This chapter included the following concepts from computing.

19.9.1. Summary of Python Keywords and Functions

  • Close - The close procedure closes a file after you are done processing it.

  • Open - The open procedure opens the passed file for either reading or writing.

  • Split - The split function can be called on a string to break it up at a specified character into a list of strings. For example, if message = "Nora,Jones,15" then message.split(",") would return ['Nora', 'Jones', '15'].

You have attempted of activities on this page