Introduction To Python Language
Introduction To Python Language
Why Python?
Python is easy to use
Python typically operates at a much higher level of abstraction. Syntax rules are very simple. Python to take one-fifth the time it would if coded in C or Java
Why Python?
Python is expressive Expressive in this context means that a single line of Python code can do more than a single line of code in most other languages
Example:
In java
int temp = var1; var1 = var2; var2 = temp;
Python
var2, var1 = var1, var2
5/13/2012 1
Why Python?
Python is readable
one can guess easily whats happening in code
#Perl version. sub pairwise_sum { my($arg1, $arg2) = @_; my(@result) = (); @list1 = @$arg1; @list2 = @$arg2; for($i=0; $i < length(@list1); $i++) { push(@result, $list1[$i] + $list2[$i]); } return(\@result); } # Python version. def pairwise_sum(list1, list2): result = [] for i in range(len(list1)): result.append(list1[i] + list2[i]) return result
Why Python?
Python is complete
Python standard library comes with modules for handling email, web pages, databases, operating system calls, GUI development, and more.
Python is cross-platform
Python runs on many different platforms: Windows, Mac, Linux, UNIX, and so on.
Python is free
Python was originally, and continues to be, developed under the open source model, and its freely available. You can download and install practically any version of Python and use it to develop software for commercial or personal applications, and you dont need to pay a dime.
Installing Python
Installing Python is a simple matter, regardless of which platform youre using. the most recent one can always be found at www.python.org.
command-line
Comments
For the most part, anything following a # symbol in a Python file is a comment and is disregarded by the language.
del statement
The del statement deletes the variable.
Expressions
Python supports arithmetic and similar expressions; these will be familiar to most readers. The following code calculates the average of 3 and 5, leaving the result in the variable z:
Strings
You can use single quotes instead of double quotes. The following two lines do the same thing: x = "Hello, World" x = 'Hello, World'
Numbers
Python offers four kinds of numbers: integers, floats, complex numbers, and Booleans.
Numbers
Lists
Lists are like arrays A list in Python is much the same thing as an array in Java or C or any other language. Its an ordered collection of objects. You create a listd by enclosing a comma separated list of elements in square brackets, like so: Example
x = [1, 2, 3]
List indices
Elements can be extracted from a Python list using a notation like Cs array indexing. Like C and many other languages, Python starts counting from 0; asking for element 0
if indices are negative numbers, they indicate positions counting from the end of the list, with 1 being the last position in the list, 2 being the second-to-last position, and so forth.
List indices
In thelist ["first", "second", "third", "fourth"], you can think of the indices as pointing like this:
Slicing in List
enter list[index1:index2] to extract all items including index1 and up to (but not including) index2 into a new list.
Slicing in List
When slicing a list, its also possible to leave out index1 or index2. Leaving out index1 means go from the beginning of the list, and leaving out index2 means go to the end of the list:
Slicing in List
Omitting both indices makes a new list that goes from the beginning to the end of the original list; that is, it copies the list. This is useful when you wish to make a copy that you can modify, without affecting the original list:
Modifying lists
You can use list index notation to modify a list as well as to extract an element from it.
Modifying lists
Slice notation can be used here too. Saying something like lista[index1:index2] = listb causes all elements of lista between index1 and index2 to be replaced with the elements in listb. listb can have more or fewer elements than are removed from lista, in which case the length of lista will be altered. You can use slice assignment to do a number of different things, as shown here:
Append, Extend
Appending a single element to a list is such a common operation that theres a special append method to do it:
The extend method is like the append method, except that it allows you to add one list to another:
Insert
insert is used as a method of lists and takes two additional arguments; the first is the index position in the list where the new element should be inserted, and the second is the new element itself:
removes
remove looks for the first instance of a given value in a list and removes that value from the list:
Sorting lists
Lists can be sorted using the built-in Python sort method:
Min/Max
You can use min and max to find the smallest and largest elements in a list
Nested lists
Lists can be nested. One application of this is to represent two-dimensional matrices. The members of these can be referred to using two-dimensional indices. Indices for these work as follows:
Thanks