Book Image

Learn Python in 7 Days

Book Image

Learn Python in 7 Days

Overview of this book

Python is a great language to get started in the world of programming and application development. This book will help you to take your skills to the next level having a good knowledge of the fundamentals of Python. We begin with the absolute foundation, covering the basic syntax, type variables and operators. We'll then move on to concepts like statements, arrays, operators, string processing and I/O handling. You’ll be able to learn how to operate tuples and understand the functions and methods of lists. We’ll help you develop a deep understanding of list and tuples and learn python dictionary. As you progress through the book, you’ll learn about function parameters and how to use control statements with the loop. You’ll further learn how to create modules and packages, storing of data as well as handling errors. We later dive into advanced level concepts such as Python collections and how to use class, methods, objects in python. By the end of this book, you will be able to take your skills to the next level having a good knowledge of the fundamentals of Python.
Table of Contents (18 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
2
Type Variables and Operators

List comprehensions


List comprehension is a concise way of creating lists. In this section, we will use a list with the for loop. If you have not read about the for loop so far, you can skip this section and get back after learning about the for loop, covered in Chapter 6, Control Statements and Loops.

Let's take a list1 list as shown:

list1 = [2,3,4,5,6]

Now, our aim is to make a new list that contains the square of the elements of list1:

list1 = [2,3,4,5,6]

list2 = []

for each in list1:

            list2.append(each*each)

print list2

The output of the program is as follows:

Square of list

The preceding code took four lines to create the desired list. By using list comprehensions, we can do the preceding stuff in just one line:

>>> list1 = [2, 3, 4, 5, 6]

>>> [each*each for each in list1]

[4, 9, 16, 25, 36]

>>> 

Let's have a look at some more examples with the if statement.

 Create a new list that would contain the square of the even numbers of a given list:

list1...