Book Image

Python Fundamentals

By : Ryan Marvin, Mark Nganga, Amos Omondi
Book Image

Python Fundamentals

By: Ryan Marvin, Mark Nganga, Amos Omondi

Overview of this book

After a brief history of Python and key differences between Python 2 and Python 3, you'll understand how Python has been used in applications such as YouTube and Google App Engine. As you work with the language, you'll learn about control statements, delve into controlling program flow and gradually work on more structured programs via functions. As you settle into the Python ecosystem, you'll learn about data structures and study ways to correctly store and represent information. By working through specific examples, you'll learn how Python implements object-oriented programming (OOP) concepts of abstraction, encapsulation of data, inheritance, and polymorphism. You'll be given an overview of how imports, modules, and packages work in Python, how you can handle errors to prevent apps from crashing, as well as file manipulation. By the end of this book, you'll have built up an impressive portfolio of projects and armed yourself with the skills you need to tackle Python projects in the real world.
Table of Contents (12 chapters)
Python Fundamentals
Preface

The file Object


The file object is the default and easiest way to manipulate files in Python. It includes a couple of methods and attributes which make it easier for developers to read from, and write to, files in the filesystem.

There are two major file object types that are recognized in Python:

  • Binary file objects: These can read and write byte-like objects.

  • Text file objects: These can read and write strings objects.

The open() function, which we will be looking at later, is the easiest way to create a file object. Depending on the mode passed to the open() function, you will get back either a binary or text file object. We will be specifically working with text file objects.

The file Object Methods

The file object has several methods to make it easy to work with the underlying file. They include the following:

  • file.read(): This method loads the entire file into memory.

  • file.readline(): This method reads a single line from the file into memory.

  • file.readlines(): This method reads all of the lines...