Book Image

Python Fundamentals

By : Ryan Marvin, Mark Ng’ang’a, Amos Omondi
Book Image

Python Fundamentals

By: Ryan Marvin, Mark Ng’ang’a, Amos Omondi

Overview of this book

<p>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.</p> <p>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.</p> <p>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.</p>
Table of Contents (12 chapters)
Python Fundamentals
Preface

Numerical Data


Let's begin with numerical data types.

Types of Numbers

Integers

Integers, as we saw in the previous chapter, are numerical data types that are comprised of whole numbers. Whole numbers can be either negative or positive. In the following example, we will see how Python represents integers, and then, we can check their types:

>>> integer = 49
>>> negative_integer = -35
>>> print(type(integer), integer)
<class 'int'> 49
>>> print(type(negative_integer), negative_integer)
<class 'int'> -35
>>>

Additionally, Python integers have unlimited precision. This means that there are no limits to how large they can be (save for the amount of available memory):

>>> large_integer = 34567898327463893216847532149022563647754227885439016662145553364327889985421
>>> print(large_integer)
34567898327463893216847532149022563647754227885439016662145553364327889985421
>>>

Floating Point Numbers

Another numerical type supported...