Python Functions and Array - List - Set - Tuples Programs
Python Functions and Array - List - Set - Tuples Programs
Python Code:
def max_of_two( x, y ):
if x > y:
return x
return y
def max_of_three( x, y, z ):
return max_of_two( x, max_of_two( y, z ) )
print(max_of_three(3, 6, -5))
Sample Output:
6
Python Code:
def sum(numbers):
total = 0
for x in numbers:
total += x
return total
print(sum((8, 2, 3, 0, 7)))
Sample Output:
20
Python Functions: Exercise-3 with Solution
Write a Python function to multiply all the numbers in a list.
Python Code:
def multiply(numbers):
total = 1
for x in numbers:
total *= x
return total
print(multiply((8, 2, 3, -1, 7)))
Sample Output:
-336
Python Code:
def string_reverse(str1):
rstr1 = ''
index = len(str1)
while index > 0:
rstr1 += str1[ index - 1 ]
index = index - 1
return rstr1
print(string_reverse('1234abcd'))
Sample Output:
dcba4321
Python Functions: Exercise-5 with Solution
Write a Python function to calculate the factorial of a number (a non-negative
integer). The function accepts the number as an argument.
Python Code:
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
n=int(input("Input a number to compute the factiorial : "))
print(factorial(n))
Sample Output:
Input a number to compute the factiorial : 4
24
Python Code:
def test_range(n):
if n in range(3,9):
print( " %s is in the range"%str(n))
else :
print("The number is outside the given range.")
test_range(5)
Sample Output:
5 is in the range
How do we return multiple values in Python?
Return as tuple
a=10; b=10
return a,b
>>> x=function()
>>> type(x)
<class 'tuple'>
>>> x
(10, 10)
>>> x,y=function()
>>> x,y
(10, 10)
Return as list
a=10; b=10
return [a,b]
>>> x=function()
>>> x
[10, 10]
>>> type(x)
<class 'list'>
Return as dictionary
>>> def function():
d=dict()
a=10; b=10
d['a']=a; d['b']=b
return d
>>> x=function()
>>> x
>>> type(x)
<class 'dict'>
self.a=a
self.b=b
a=10; b=10
t=tmp(a,b)
return t
>>> x=function()
>>> type(x)
<class '__main__.tmp'>
>>> x.a
10
>>> x.b
10
Cod
e C Type Python Type Min bytes
Python Code :
for i in array_num:
print(i)
print(array_num[0])
print(array_num[1])
print(array_num[2])
Sample Output:
7
9
Python Code :
array_num.append(11)
Sample Output:
Original array: array('i', [1, 3, 5, 7, 9])
array_num.reverse()
print(str(array_num))
Sample Output:
Original array: array('i', [1, 3, 5, 3, 7, 1, 9, 3])
Python Code :
Sample Output:
Original array: array('i', [1, 3, 5, 7, 9])
Python Code :
Sample Output:
Original array: array('i', [1, 3, 5, 7, 9])
720, 5)
Python Code :
Sample Output:
Original array: array('i', [1, 3, 5, 3, 7, 9, 3])
Sample Solution:
Python Code :
array_num.insert(1, 4)
Sample Output:
Original array: array('i', [1, 3, 5, 7, 9])
array_num.pop(2) # array_num.remove(5)
Sample Output:
Original array: array('i', [1, 3, 5, 7, 9])
Approach 1:
# Python program to demonstrate printing
print(a)
Output:
[[2, 4, 6, 8, 10], [3, 6, 9, 12, 15], [4, 8, 12, 16, 20]]
# by row.
for record in a:
print(record)
Output:
[2, 4, 6, 8, 10]
[3, 6, 9, 12, 15]
[4, 8, 12, 16, 20]
# square brackets
a = [ [2, 4, 6, 8 ],
[ 1, 3, 5, 7 ],
[ 8, 6, 4, 2 ],
[ 7, 5, 3, 1 ] ]
for i in range(len(a)) :
for j in range(len(a[i])) :
Output:
2 4 6 8
1 3 5 7
8 6 4 2
7 5 3 1
print(a)
Output:
[[2, 4, 6, 8, 10], [3, 6, 9, 12, 15], [4, 8, 12, 16, 20], [5, 10, 15, 20,
25]]
2. extend(): Add the elements of a list (or any iterable), to the end of the current list.
# Extending a sublist
print(a)
Output:
[[2, 4, 6, 8, 10, 12, 14, 16, 18], [3, 6, 9, 12, 15], [4, 8, 12, 16, 20]]
a[2].reverse()
print(a)
Output:
[[2, 4, 6, 8, 10], [3, 6, 9, 12, 15], [20, 16, 12, 8, 4]]
array([1, 2, 3, 4])
y = [3, 6, 9, 12]
y/3.0
print(y)
It's almost exactly like the first example, except you wouldn't get a
valid output because the code would throw an error.
Sample Solution:-
Python Code:
def sum_list(items):
sum_numbers = 0
for x in items:
sum_numbers += x
return sum_numbers
print(sum_list([1,2,-8]))
Sample Output:
-5
Sample Solution:-
Python Code:
def multiply_list(items):
tot = 1
for x in items:
tot *= x
return tot
print(multiply_list([1,2,-8]))
Sample Output:
-16
Python Code:
def max_num_in_list( list ):
max = list[ 0 ]
for a in list:
if a > max:
max = a
return max
Sample Output:
2
Sample Solution:-
Python Code:
def smallest_num_in_list( list ):
min = list[ 0 ]
for a in list:
if a < min:
min = a
return min
Sample Output:
-8
Sample Solution:-
Python Code:
a = [10,20,30,20,10,50,60,40,80,50,40]
dup_items = set()
uniq_items = []
for x in a:
if x not in dup_items:
uniq_items.append(x)
dup_items.add(x)
print(dup_items)
Sample Output:
{40, 10, 80, 50, 20, 60, 30}
Sample Solution:-
Python Code:
l = []
if not l:
print("List is empty")
Sample Output:
List is empty
Python Code:
original_list = [10, 22, 44, 23, 4]
new_list = list(original_list)
print(original_list)
print(new_list)
Sample Output:
[10, 22, 44, 23, 4]
[10, 22, 44, 23, 4]
Python Code:
#Create an empty tuple
x = ()
print(x)
tuplex = tuple()
print(tuplex)
Sample Output:
()
()
Sample Solution:-
Python Code:
#Create a tuple with different data types
print(tuplex)
Sample Output:
('tuple', False, 3.2, 1)
Write a Python program to create a tuple with numbers and print one item.
Sample Solution:-
Python Code:
#Create a tuple with numbers
print(tuplex)
tuplex = 5,
print(tuplex)
Sample Output:
(5, 10, 15, 20, 25)
(5,)
Sample Solution:-
Python Code:
#create a tuple
tuplex = (4, 6, 2, 8, 3, 1)
print(tuplex)
#using merge of tuples with the + operator you can add an element and it will create
a new tuple
print(tuplex)
listx = list(tuplex)
listx.append(30)
tuplex = tuple(listx)
print(tuplex)
Sample Output:
(4, 6, 2, 8, 3, 1)
(4, 6, 2, 8, 3, 1, 9)
(4, 6, 2, 8, 3, 15, 20, 25, 4, 6, 2, 8, 3)
(4, 6, 2, 8, 3, 15, 20, 25, 4, 6, 2, 8, 3, 30)
Sample Solution:-
Python Code:
#create a tuple
tuplex = 2, 4, 5, 6, 2, 3, 4, 4, 7
print(tuplex)
count = tuplex.count(4)
print(count)
Sample Output:
(2, 4, 5, 6, 2, 3, 4, 4, 7)
3
Python tuple: Exercise-6 with Solution
Write a Python program to get the 4th element and 4th element from last of a
tuple.
Sample Solution:-
Python Code:
#Get an item of the tuple
tuplex = ("w", 3, "r", "e", "s", "o", "u", "r", "c", "e")
print(tuplex)
item = tuplex[3]
print(item)
item1 = tuplex[-4]
print(item1)
Sample Output:
('w', 3, 'r', 'e', 's', 'o', 'u', 'r', 'c', 'e')
e
u
A list is not merely a collection of objects. It is an ordered collection of objects. The order in
which you specify the elements when you define a list is an innate characteristic of that list and is
maintained for that list’s lifetime. (You will see a Python data type that is not ordered in the next
tutorial on dictionaries.)
Lists that have the same elements in a different order are not the same:
A list can contain any assortment of objects. The elements of a list can all be
the same type:
>>> a = [2, 4, 6, 8]
>>> a
[2, 4, 6, 8]
Or the elements can be of varying types:
Lists can even contain complex objects, like functions, classes, and
modules.
>>> int
<class 'int'>
>>> len
<built-in function len>
>>> def foo():
... pass
...
>>> foo
<function foo at 0x035B9030>
>>> import math
>>> math
<module 'math' (built-in)>
A list can contain any number of objects, from zero to as many as your
>>> a = []
>>> a
[]
>>> a = [ 'foo' ]
>>> a
['foo']
>>> a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20,
... 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
39, 40,
... 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
59, 60,
... 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78,
79, 80,
... 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98,
99, 100]
>>> a
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58,
59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96,
97, 98, 99, 100]
(A list with a single object is sometimes referred to as a singleton list.)
List objects needn’t be unique. A given object can appear in a list multiple
times:
>>> a[0]
'foo'
>>> a[2]
'baz'
>>> a[5]
'corge'
Virtually everything about string indexing works similarly for lists. For
example, a negative list index counts from the end of the list:
>>> a[-1]
'corge'
>>> a[-2]
'quux'
>>> a[-5]
'bar'
>>> a[2:5]
['baz', 'qux', 'quux']
Other features of string slicing work analogously for list slicing as well:
>>> a[-5:-2]
['bar', 'baz', 'qux']
>>> a[1:4]
['bar', 'baz', 'qux']
>>> a[-5:-2] == a[1:4]
True
Omitting the first index starts the slice at the beginning of the list, and
omitting the second index extends the slice to the end of the list:
>>> a[0:6:2]
['foo', 'baz', 'quux']
>>> a[1:6:2]
['bar', 'qux', 'corge']
>>> a[6:0:-2]
['corge', 'qux', 'bar']
The syntax for reversing a list works the same way it does for strings:
>>> a[::-1]
['corge', 'quux', 'qux', 'baz', 'bar', 'foo']
>>> s = 'foobar'
>>> s[:]
'foobar'
>>> s[:] is s
True
Conversely, if a is a list, a[:] returns a new object that is a copy of a:
Several Python operators and built-in functions can also be used with lists in
ways that are analogous to strings:
The in and not in operators:
>>> a
['foo', 'bar', 'baz', 'qux', 'quux', 'corge']
>>> 'qux' in a
True
>>> 'thud' not in a
True
The concatenation (+) and replication (*) operators:
>>> a
['foo', 'bar', 'baz', 'qux', 'quux', 'corge']
The len(), min(), and max() functions:
>>> a
['foo', 'bar', 'baz', 'qux', 'quux', 'corge']
>>> len(a)
6
>>> min(a)
'bar'
>>> max(a)
'qux'
You have seen that an element in a list can be any sort of object. That includes
another list. A list can contain sublists, which in turn can contain sublists
themselves, and so on to arbitrary depth.
>>> x = ['a', ['bb', ['ccc', 'ddd'], 'ee', 'ff'], 'g', ['hh', 'ii'], 'j']
>>> x
['a', ['bb', ['ccc', 'ddd'], 'ee', 'ff'], 'g', ['hh', 'ii'], 'j']
The object structure that x references is diagrammed below:
x[0], x[2], and x[4] are strings, each one character long:
But x[1] and x[3] are sublists:
>>> x[1]
['bb', ['ccc', 'ddd'], 'ee', 'ff']
>>> x[3]
['hh', 'ii']
>>> x[1]
['bb', ['ccc', 'ddd'], 'ee', 'ff']
>>> x[1][0]
'bb'
>>> x[1][1]
['ccc', 'ddd']
>>> x[1][2]
'ee'
>>> x[1][3]
'ff'
>>> x[3]
['hh', 'ii']
>>> print(x[3][0], x[3][1])
hh ii
x[1][1] is yet another sublist, so adding one more index accesses its
elements:
>>> x[1][1]
['ccc', 'ddd']
>>> print(x[1][1][0], x[1][1][1])
ccc ddd
the depth or complexity with which lists can be nested in this way.
Most of the data types you have encountered so far have been atomic types.
Integer or float objects, for example, are primitive units that can’t be further
broken down. These types are immutable, meaning that they can’t be changed
once they have been assigned. It doesn’t make much sense to think of
changing the value of an integer. If you want a different integer, you just
assign a different one.
The list is the first mutable data type you have encountered. Once a list has
been created, elements can be added, deleted, shifted, and moved around at
will. Python provides a wide range of ways to modify lists.
>>> a[2] = 10
>>> a[-1] = 20
>>> a
['foo', 'bar', 10, 'qux', 'quux', 20]
You may recall from the tutorial Strings and Character Data in Python that you can’t do this with
a string:
>>> s = 'foobarbaz'
>>> s[2] = 'x'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'str' object does not support item assignment
What if you want to change several contiguous elements in a list at one time?
Python allows this with slice assignment, which has the following syntax:
a[m:n] = <iterable>
Again, for the moment, think of an iterable as a list. This assignment replaces
the specified slice of a with <iterable>:
>>> a[1:4]
['bar', 'baz', 'qux']
>>> a[1:4] = [1.1, 2.2, 3.3, 4.4, 5.5]
>>> a
['foo', 1.1, 2.2, 3.3, 4.4, 5.5, 'quux', 'corge']
>>> a[1:6]
[1.1, 2.2, 3.3, 4.4, 5.5]
>>> a[1:6] = ['Bark!']
>>> a
['foo', 'Bark!', 'quux', 'corge']
The number of elements inserted need not be equal to the number replaced.
Python just grows or shrinks the list as needed.
You can insert multiple elements in place of a single element—just use a slice
that denotes only one element:
>>> a = [1, 2, 3]
>>> a[1:2] = [2.1, 2.2, 2.3]
>>> a
[1, 2.1, 2.2, 2.3, 3]
Note that this is not the same as replacing the single element with a list:
>>> a = [1, 2, 3]
>>> a[1] = [2.1, 2.2, 2.3]
>>> a
[1, [2.1, 2.2, 2.3], 3]
You can also insert elements into a list without removing anything. Simply
specify a slice of the form [n:n] (a zero-length slice) at the desired index:
>>> a = [1, 2, 7, 8]
>>> a[2:2] = [3, 4, 5, 6]
>>> a
[1, 2, 3, 4, 5, 6, 7, 8]
You can delete multiple elements out of the middle of a list by assigning the
appropriate slice to an empty list. You can also use the del statement with the
same slice:
Note that a list must be concatenated with another list, so if you want to add
only one element, you need to specify it as a singleton list:
>>> a += [20]
>>> a
['foo', 'bar', 'baz', 'qux', 'quux', 'corge', 20]
Finally, Python supplies several built-in methods that can be used to modify
lists. Information on these methods is detailed below.
Note: The string methods you saw in the previous tutorial did not modify the
target string directly. That is because strings are immutable. Instead, string
methods return a new string object that is modified as directed by the
method. They leave the original target string unchanged:
>>> s = 'foobar'
>>> t = s.upper()
>>> print(s, t)
foobar FOOBAR
List methods are different. Because lists are mutable, the list methods shown
here modify the target list in place
a.append(<obj>)
Remember, list methods modify the target list in place. They do not return a
new list:
Remember that when the + operator is used to concatenate to a list, if the target operand is an
iterable, then its elements are broken out and appended to the list individually:
a.extend(<iterable>)
a.insert(<index>, <obj>)
Inserts an object into a list.
a.insert(<index>, <obj>) insertsobject <obj> into list a at the specified <index>.
Following the method call, a[<index>] is <obj>, and the remaining list elements
are pushed to the right:
a.remove(<obj>)
Removes an object from a list.
a.remove(<obj>) removes object <obj> from list a. If <obj> isn’t in a, an exception is raised:
>>> a.remove('Bark!')
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
a.remove('Bark!')
ValueError: list.remove(x): x not in list
a.pop(index=-1)
1. You specify the index of the item to remove, rather than the object itself.
2. The method returns a value: the item that was removed.
a.pop() simply removes the last item in the list:
>>> a.pop()
'corge'
>>> a
['foo', 'bar', 'baz', 'qux', 'quux']
>>> a.pop()
'quux'
>>> a
['foo', 'bar', 'baz', 'qux']
>>> a.pop(1)
'bar'
>>> a
['foo', 'baz', 'qux', 'quux', 'corge']
>>> a.pop(-3)
'qux'
>>> a
['foo', 'baz', 'quux', 'corge']
This tutorial began with a list of six defining characteristics of Python lists. The
last one is that lists are dynamic. You have seen many examples of this in the
sections above. When items are added to a list, it grows as needed:
>>> a = ['foo', 'bar', 'baz', 'qux', 'quux', 'corge']
Python Tuples
Python provides another type that is an ordered collection of objects, called a tuple.
Pronunciation varies depending on whom you ask. Some pronounce it as though it were spelled
“too-ple” (rhyming with “Mott the Hoople”), and others as though it were spelled “tup-ple”
(rhyming with “supple”). My inclination is the latter, since it presumably derives from the same
origin as “quintuple,” “sextuple,” “octuple,” and so on, and everyone I know pronounces these
latter as though they rhymed with “supple.”
Tuples are identical to lists in all respects, except for the following properties:
Tuples are defined by enclosing the elements in parentheses (()) instead of square brackets
([]).
Tuples are immutable.
Never fear! Our favorite string and list reversal mechanism works for tuples as
well:
>>> t[::-1]
('corge', 'quux', 'qux', 'baz', 'bar', 'foo')
Note: Even though tuples are defined using parentheses, you still index and
slice tuples using square brackets, just as for strings and lists.
Everything you’ve learned about lists—they are ordered, they can contain
arbitrary objects, they can be indexed and sliced, they can be nested—is true
of tuples as well. But they can’t be modified:
In a Python REPL session, you can display the values of several objects
simultaneously by entering them directly at the >>> prompt, separated by
commas:
>>> a = 'foo'
>>> b = 42
>>> a, 3.14159, b
('foo', 3.14159, 42)
There is one peculiarity regarding tuple definition that you should be aware of.
There is no ambiguity when defining an empty tuple, nor one with two or
more elements. Python knows you are defining a tuple:
>>> t = ()
>>> type(t)
<class 'tuple'>
>>> t = (1, 2)
>>> type(t)
<class 'tuple'>
>>> t = (1, 2, 3, 4, 5)
>>> type(t)
<class 'tuple'>
But what happens when you try to define a tuple with one item:
>>> t = (2)
>>> type(t)
<class 'int'>
>>> t = (2,)
>>> type(t)
<class 'tuple'>
>>> t[0]
2
>>> t[-1]
2
You probably won’t need to define a singleton tuple often, but there has to be
a way.
When you display a singleton tuple, Python includes the comma, to remind
you that it’s a tuple:
>>> print(t)
(2,)
As you have already seen above, a literal tuple containing several items can be
assigned to a single object:
When this occurs, it is as though the items in the tuple have been “packed”
into the object:
>>> t
('foo', 'bar', 'baz', 'qux')
>>> t[0]
'foo'
>>> t[-1]
'qux'
When unpacking, the number of variables on the left must match the number
of values in the tuple:
Again, the number of elements in the tuple on the left of the assignment must
equal the number on the right:
>>> (s1, s2, s3, s4, s5) = ('foo', 'bar', 'baz', 'qux')
Traceback (most recent call last):
File "<pyshell#63>", line 1, in <module>
(s1, s2, s3, s4, s5) = ('foo', 'bar', 'baz', 'qux')
ValueError: not enough values to unpack (expected 5, got 4)
In assignments like this and a small handful of other situations, Python allows
the parentheses that are usually used for denoting a tuple to be left out:
>>> t = 1, 2, 3
>>> t
(1, 2, 3)
>>> t = 2,
>>> t
(2,)
It works the same whether the parentheses are included or not, so if you have
any doubt as to whether they’re needed, go ahead and include them.
>>> a = 'foo'
>>> b = 'bar'
>>> a, b
('foo', 'bar')
>>> a, b
('bar', 'foo')
In Python, the swap can be done with a single tuple assignment:
>>> a = 'foo'
>>> b = 'bar'
>>> a, b
('foo', 'bar')
>>> a, b
('bar', 'foo')
As anyone who has ever had to swap values using a temporary variable knows,
being able to do it this way in Python is the pinnacle of modern technological
achievement. It will never get better than this.
Conclusion
This tutorial covered the basic properties of Python lists and tuples, and how
to manipulate them. You will use these extensively in your Python
programming.
One of the chief characteristics of a list is that it is ordered. The order of the
elements in a list is an intrinsic property of that list and does not change,
unless the list itself is modified. (The same is true of tuples, except of course
they can’t be modified.)
Dictionaries in Python
Dictionaries and lists share the following characteristics:
Defining a Dictionary
Dictionaries are Python’s implementation of a data structure that is more
generally known as an associative array. A dictionary consists of a collection of
key-value pairs. Each key-value pair maps the key to its associated value.
d = {
<key>: <value>,
<key>: <value>,
.
.
.
<key>: <value>
}
The following defines a dictionary that maps a location to the name of its
corresponding Major League Baseball team:
>>> MLB_team = {
... 'Colorado' : 'Rockies',
... 'Boston' : 'Red Sox',
... 'Minnesota': 'Twins',
... 'Milwaukee': 'Brewers',
... 'Seattle' : 'Mariners'
... }
You can also construct a dictionary with the built-in dict() function. The
argument to dict()should be a sequence of key-value pairs. A list of tuples
works well for this:
d = dict([
(<key>, <value>),
(<key>, <value),
.
.
.
(<key>, <value>)
])
If the key values are simple strings, they can be specified as keyword
arguments. So here is yet another way to define MLB_team:
Once you’ve defined a dictionary, you can display its contents, the same as
you can do for a list. All three of the definitions shown above appear as
follows when displayed:
>>> type(MLB_team)
<class 'dict'>
>>> MLB_team
{'Colorado': 'Rockies', 'Boston': 'Red Sox', 'Minnesota': 'Twins',
'Milwaukee': 'Brewers', 'Seattle': 'Mariners'}
The entries in the dictionary display in the order they were defined. But that is
irrelevant when it comes to retrieving them. Dictionary elements are not
accessed by numerical index:
>>> MLB_team[1]
Traceback (most recent call last):
File "<pyshell#13>", line 1, in <module>
MLB_team[1]
KeyError: 1
>>> MLB_team['Minnesota']
'Twins'
>>> MLB_team['Colorado']
'Rockies'
If you refer to a key that is not in the dictionary, Python raises an exception:
>>> MLB_team['Toronto']
Traceback (most recent call last):
File "<pyshell#19>", line 1, in <module>
MLB_team['Toronto']
KeyError: 'Toronto'
Adding an entry to an existing dictionary is simply a matter of assigning a new
key and value:
If you want to update an entry, you can just assign a new value to an existing
key:
MLB_team['Seattle'] = 'Seahawks'
>>> MLB_team
{'Colorado': 'Rockies', 'Boston': 'Red Sox', 'Minnesota': 'Twins',
'Milwaukee': 'Brewers', 'Seattle': 'Seahawks', 'Kansas City': 'Royals'}
>>> person = {}
>>> type(person)
<class 'dict'>
Once the dictionary is created in this way, its values are accessed the same
way as any other dictionary:
>>> person
{'fname': 'Joe', 'lname': 'Fonebone', 'age': 51, 'spouse': 'Edna',
'children': ['Ralph', 'Betty', 'Joey'], 'pets': {'dog': 'Fido', 'cat':
'Sox'}}
>>> person['fname']
'Joe'
>>> person['age']
51
>>> person['children']
['Ralph', 'Betty', 'Joey']
>>> person['children'][-1]
'Joey'
>>> person['pets']['cat']
'Sox'
Python sets: Exercise-1 with Solution
Sample Solution:-
Python Code:
#Create a new empty set
x = set()
print(x)
n = set([0, 1, 2, 3, 4])
print(n)
Sample Output:
set()
{0, 1, 2, 3, 4}
Sample Solution:-
Python Code:
#Create a set
for n in num_set:
print(n)
Sample Output:
0
1
2
3
4
5
Sample Solution:-
Python Code:
#A new empty set
color_set = set()
color_set.add("Red")
print(color_set)
color_set.update(["Blue", "Green"])
print(color_set)
Sample Output:
{'Red'}
{'Red', 'Blue', 'Green'}
Sample Solution:-
Python Code:
num_set = set([0, 1, 3, 4, 5])
num_set.pop()
print(num_set)
num_set.pop()
print(num_set)
Sample Output:
{1, 3, 4, 5}
{3, 4, 5}
Write a Python program to remove an item from a set if it is present in the set.
Sample Solution:-
Python Code:
#Create a new set
#Discard number 4
num_set.discard(4)
print(num_set)
Sample Output:
{0, 1, 2, 3, 5}
Write a Python program to find maximum and the minimum value in a set.
Sample Solution:-
Python Code:
#Create a set
print(max(seta))
print(min(seta))
Copy
Sample Output:
20
2
Python Code:
#Create a set
print(len(seta))
Sample Output:
6