Python Data Structures
Python Data Structures
STRUCTURES
DATA STRUCTURE IN PYTHON
The most basic data structure in Python is the sequence. Each element
of a sequence is assigned a number - its position or index. The first
index is zero, the second index is one, and so forth.
Python has six built-in types of sequences, but the most common ones
are lists and tuples, There are certain things you can do with all
sequence types. These operations include indexing, slicing, adding,
multiplying, and checking for membership. In addition, Python has
built-in functions for finding the length of a sequence and for finding its
largest and smallest elements.
LIST
Python Lists
The list is a most versatile datatype available in Python which can be
written as a list of comma-separated values (items) between square
brackets. Important thing about a list is that items in a list need not be of
the same type.
Creating a list is as simple as putting different comma-separated values
between square brackets.
For example −
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5 ]
list3 = ["a", "b", "c", "d"]
LIST EXAMPLE
>>> L1=[17,18,15,19,14]
LIST ACCESS
languages = ["Python", "Swift", "C++"]
#!/usr/bin/python
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5, 6, 7 ]
print ("list1[0]: ", list1[0] )
print ("list2[1:5]: ", list2[1:5])
For example −
list = ['physics', 'chemistry', 1997, 2000]
print "Value available at index 2 : " print list[2]
list[2] = 2001
print "New value available at index 2 : "
print list[2]
UPDATING LIST ELEMENT
Change List Items
Python lists are mutable. Meaning lists are changeable. And, we can change items of a
list by assigning new values using = operator. For example,
print(languages)
Delete List Elements
To remove a list element, you can use either the del statement if you know
exactly which element(s) you are deleting or the remove() method if you do
not know.
For example −
list1 = ['physics', 'chemistry', 1997, 2000]
print (list1)
del list1[2]
print ("After deleting value at index 2 : " )
print (list1)
DELETE LIST ELEMENT
2. Using remove()
We can also use the remove() method to delete a list item. For example,
print(languages)
BASIC LIST OPERATIONS
Lists respond to the + and * operators much like strings; they mean
concatenation and repetition here too, except that the result is a new list, not
a string.
Python Expression Results Description
len([1, 2, 3]) 3 Length
[1, 2, 3] + [4, 5, 6] [1, 2, 3, 4, 5, 6] Concatenation
['Hi!'] * 4 ['Hi!', 'Hi!', 'Hi!', 'Hi!'] Repetition
3 in [1, 2, 3] True Membership
for x in [1, 2, 3]:
123 Iteration
print x,
INDEXING, SLICING, AND
MATRIXES
Because lists are sequences, indexing and slicing work the same way for
lists as they do for strings.
list = ['1','2','3']
for l in list: # Iterating list
print(l)
list.pop(2)
print("After poping:")
for l in list: # Iterating list
print(l)
PYTHON LIST REMOVE(X) METHOD
Python remove() method removes the first item from the list which is
equal to the passed value. It throws an error if the item is not present in the
list. Signature and examples are described below.
list = ['1','2','3']
for l in list: # Iterating list
print(l)
list.remove('2')
print("After removing:")
for l in list: # Iterating list
print(l)
PYTHON LIST REVERSE() METHOD
Python reverse() method reverses elements of the list. If the list is
empty, it simply returns an empty list. After reversing the last
index value of the list will be present at 0 index. The examples and
method signature is given below.
# Python list reverse() Method
# Creating a list
apple = ['a','p','p','l','e']
# Method calling
apple.reverse() # Reverse elements of the list
# Displaying result
print(apple)
PYTHON LIST SORT()
METHOD
Python sort() method sorts the list elements. It also sorts the items into
descending and ascending order. It takes an optional parameter 'reverse' which
sorts the list into descending order. By default, list sorts the elements into
ascending order. The examples and signature are given below.
apple = ['a', 'p', 'p', 'l', 'e'] # Char list
even = [6,8,2,4] # int list
print(apple)
print(even)
# Calling Method
apple.sort()
even.sort()
# Displaying result
print("\nAfter Sorting:\n",apple)
print(even)
TUPLES
A tuple is a sequence of immutable Python objects. Tuples are sequences,
just like lists. The differences between tuples and lists are, the tuples
cannot be changed unlike lists and tuples use parentheses, whereas lists
use square brackets.
Creating a tuple is as simple as putting different comma-separated values.
Optionally you can put these comma-separated values between
parentheses also.
For example −
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5 )
tup3 = "a", "b", "c", "d";
ACCESSING VALUES IN
TUPLES
To access values in tuple, use the square brackets for slicing along with
the index or indices to obtain value available at that index.
For example −
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print ("tup1[0]: ", tup1[0])
print ("tup2[1:5]: ", tup2[1:5])
Method Description
count(x) Returns the number of items x
Returns the index of the first
index(x)
item that is equal to x
COUNT AND INDEX METHODS
my_tuple = ('a','p','p','l','e',)
print(my_tuple.count('p'))
# Output: 2
print(my_tuple.index('l'))
# Output: 3
ADVANTAGES OF TUPLE OVER LIST
Since tuples are quite similar to lists, both of them are used in similar situations as
well. However, there are certain advantages of implementing a tuple over a list.
Below listed are some of the main advantages:
1. We generally use tuple for heterogeneous (different) datatypes and list for
homogeneous (similar) datatypes.
2. Since tuples are immutable, iterating through tuple is faster than with list. So
there is a slight performance boost.
3. Tuples that contain immutable elements can be used as a key for a dictionary.
With lists, this is not possible.
4. If you have data that doesn't change, implementing it as tuple will guarantee
that it remains write-protected.
PYTHON SET
Two sets are said to be disjoint sets if they have no common elements.
For example:
A = {1, 5, 9, 0}
B = {2, 4, -5}
Here, sets A and B are disjoint sets.
PYTHON SET ISSUBSET()
dict.setdefault(key[, default_value])
setdefault() Parameters
The setdefault() takes maximum of two parameters:
•key - key to be searched in the dictionary
•default_value (optional) - key with a value default_value is inserted to
the dictionary if key is not in the dictionary.
If not provided, the default_value will be None.
RETURN VALUE FROM
SETDEFAULT()
Return Value from setdefault()
The setdefault() returns:
value of the key if it is in the dictionary
None if key is not in the dictionary and default_value is not specified
default_value if key is not in the dictionary and default_value is specified
person = {'name': 'Phill', 'age': 22}
age = person.setdefault(‘age1‘,28)
print('person = ',person)
print('Age =‘,age) #person = {'name': 'Phill', 'age': 22} Age = 22
PYTHON DICTIONARY UPDATE()
The update() method updates the dictionary with the elements from the another
dictionary object or from an iterable of key/value pairs.
The update() method adds element(s) to the dictionary if the key is not in the
dictionary. If the key is in the dictionary, it updates the key with the new value.
dict.update([other])
update() Parameters
The update() method takes either a dictionary or an iterable object of key/value
pairs (generally tuples).
If update() is called without passing parameters, the dictionary remains
unchanged.
They update() method updates the dictionary with elements from a dictionary
object or an iterable object of key/value pairs.
EXAMPLE
d = {1: "one", 2: "three"}
d1 = {2: "two"}
d.update(d1)# updates the value of key 2
print(d)
d1 = {3: "three"}
d.update(d1)# adds element with key 3
print(d)
#output
#{1: 'one', 2: 'two'}
#{1: 'one', 2: 'two', 3: 'three'}
PYTHON DICTIONARY
VALUES()
The values() method returns a view object that displays a list of all the
values in the dictionary.
dictionary.values()
values() Parameters: The values() method doesn't take any parameters.
Return value from values():- The values() method returns a view object
that displays a list of all values in a given dictionary.
# random sales dictionary
sales = { 'apple': 2, 'orange': 3, 'grapes': 4 }
print(sales.values())
#output
#dict_values([3, 2, 4])