Sequence data types in python

Qus What do you understand by mutability?

Ans: Mutable means changeable. In Python, mutable types are those whose values can be changed in place. Only three types are mutable in python – Lists, Dictionaries and Sets.

Qus Start with the list[8,9,10]. Do the following using list functions

(a) Set the second entry (index 1) to 17

(b) Add 4, 5 and 6 to the end of the list.

(c) Remove the first entry from the list.

(d) Sort the list.

(e) Double the list.

(f) Insert 25 at index 3


Ans:

(a) list[1]=17

(b) list.append(4)

list.append(5)

list.append(6)

(c) list.pop(0)

(d) list.sort()

(e) list=list*2

(f) list.insert(3,25)


Qus.  If a is [1, 2, 3], what is the difference (if any) between a*3 and [a, a, a]?

Ans: a*3 will produce [1,2,3,1,2,3,1,2,3], means a list of integers and [a, a, a] will produce [[1,2,3],[1,2,3],[1,2,3]], means list of lists


Qus. If a is [1, 2, 3], is a *3 equivalent to a + a + a?

Ans: Yes, Both a*3 and a+a+a will produce same result.


Qus. If a is [1, 2, 3], what is the meaning of a [1:1] = 9?

Ans: This will generate an error "TypeError: can only assign an iterable'.


Qus If a is [1, 2, 3], what is the meaning of a [1:2] = 4 and a [1:1] = 4?

Ans: These will generate an error "TypeError: can only assign an iterable".

Qus. What are list slices?

Ans: List slices are the sub-part of a list extracted out. You can use indexes of the list elements to create list slices as per following format. Syntax is as follows –

Qus Does a slice operator always produce a new list?

Ans: Yes, this will create a new list.


Qus. How are lists different from strings when both are sequences?

Ans: Lists are similar to strings in many ways like indexing, slicing, and accessing individual elements but they are different in the sense that

(i) Lists are mutable while strings are immutable.

(ii) In consecutive locations, strings store the individual characters while list stores the references of its elements.

(iii) Strings store single type of elements-all characters while lists can store elements belonging to different types.


Qus. What are nested Lists?

Ans: A list can have an element in it, which itself is a list. Such a list is called nested list. e.g.

L = [1,2,3,4,[5,6,7],8]


Qus. Discuss the utility and significance of Lists.

Ans: 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. List is majorly used with dictionaries when there is large number of data.


Qus What is the purpose of the del operator and pop method? Try deleting a slice.

Ans: del operator is used to remove an individual item, or to remove all items identified by a slice. It is to be used as per syntax given below –

>>>del List[index]

>>>del List[start:stop]

pop method is used to remove single element, not list slices. The pop() method removes an individual item and returns it. Its syntax is –

>>>a=List.pop() #this will remove last item and deleted item will be assigned to a.

>>>a=List[10] # this will remove the ite at index 10 and deleted item will be assigned to a.


Qus. What are list slices?

Ans: List slices, like string slices are the sub part of a list extracted out. Indexes can be used to create list slices as per following format:

seq = L[start:stop]


Qus. What do you understand by true copy of a list? How is it different from shallow copy?

Ans: A shallow copy means constructing a new collection object and then populating it with references to the child objects found in the original. In essence, a shallow copy is only one level deep. The copying process does not recurse and therefore won‘t create copies of the child objects themselves.

True Copy means you can create a copy of a list using New_list=My_list. The assignment just copies the reference to the list, not the actual list, so both new_list and my_list refer to the same list after the assignment.


Qus What do you understand by immutability?

Ans: Immutability means not changeable. The immutable types are those that can never change their value in place. In python following types are immutable –

I. Integers

II. Floating point numbers

III. Booleans

IV. Strings

V. Tuples


Qus How are Tuples different from Lists when both are sequences?

Ans: Tuples are similar to lists in many ways like indexing, slicing, and accessing individual values but they are different in the sense that –

Tuples are immutable while lists are mutable.

List can grow or shrink while tuples cannot.


Qus Can tuples be nested?

Ans: Yes, tuples can be nested. e.g (1,2,3,(4,5,6))


Qus. Discuss the utility and significance of Tuples.

Ans: Tuples are great for holding static data that you don't plan on modifying and changing a lot. Tuples are four to seven times faster than lists. This means for every list item manipulated, four to seven tuples could be manipulated within that time frame. This has huge advantages for scientific work, as this allows for speedy data reading.


Qus. How can you say that a tuple is an ordered list of objects?

Ans: A tuple is an ordered list of objects. This is evidenced by the fact that the objects can be accessed through the use of an ordinal index amd for a given index, same element is returned every time.


Qus. Why can‟t List can be used as keys?

Ans: List is mutable datatype. And Keys of dictionary must be immutable type. This is the region that list cannot be used as keys.


Qus. What type of objects can be used as keys in dictionary?

Ans: Any immutable objects can be used as keys in dictionary.


Qus. Can you change the order of the dictionaries contents?

Ans: Yes, the order of dictionary contents may be changed.


Qus. Can you modify the keys in a dictionary?

Ans: Keys cannot be modified in dictionary while values are mutable in dictionary.


Qus. Can you modify the value in a dictionary?

Ans: Yes, Values can be modified in dictionaries.


Qus. Is dictionary Mutable? Why?

Ans: Dictionary is mutable type because we can change its values.


Qus How are dictionaries different from Lists?

Ans: The dictionary is similar to lists in the sense that it is also a collection of data-items but it is different from lists in the sense that lists are sequential collections(ordered) and dictionaries are non-sequential collections(unordered).

Elements in lists or tuples can be accessed by using indexes. But in dictionaries the values can be obtained using keys. By changing the sequence of key we can shuffle the order of elements of dictionary while this thing is not possible in list.


Qus. When are dictionaries more useful than lists?

Ans: Dictionaries can be much more useful than lists when we wanted to store all our friends cell-phone numbers. We could create a list of pairs,(name of friend, phone number), but once this list becomes long enough searching this list for a specific phone number will get-time consuming. Better would be if we could index the list by our friend‘s name. This is precisely what a dictionary does.


Qus. Discuss the utility and significance of Dictionaries.

Ans: Dictionaries can be much more useful than lists when we wanted to store all our friends cell-phone numbers. We could create a list of pairs,(name of friend, phone number), but once this list becomes long enough searching this list for a specific phone number will get-time consuming. Better would be if we could index the list by our friend‘s name. This is precisely what a dictionary does.


Qus. Why is a dictionary termed as an unordered collection of objects?

Ans: But in dictionaries the values can be obtained using keys. By changing the sequence of key we can shuffle the order of elements of dictionary while this thing is not possible in list. In dictionaries there is no index. It uses its keys as index which can be rearranged. That‘s why a dictionary termed as an unordered collection of objects


Qus. How is clear() function different from del <dict> Statement?

Ans: clear() removes all the elements of a dictionary and makes it empty dictionary while del statement removes the complete dictionary as an object. After del statement with a dictionary name, that dictionary object no longer exists, not even empty dictionary.



CCC Practice Test Hindi Python Programming Tutorials Best Computer Training Institute in Prayagraj (Allahabad) Sarkari Exam Quiz O Level Online Test in Hindi Bank SSC Railway TET UPTET Question Bank