List WK Flashcards
All solved list ques from the wk
List in Python is classified as _____________ data type.
list
A list consists of elements of _____________ type.
any
Lists are indexed by an _____________ data type.
integer
Elements of a list are enclosed in _____________ brackets.
square
Lists are _____________, you can update or edit the list.
mutable
The _____________ method adds a single item to the existing list at the end.
append
The _____________ operator replicates a list.
*
Write the most appropriate list method to get the position of an item in the list.
index
Write the most appropriate list method to add a single element at the end of the list.
append
Write the most appropriate list method to add an element in the beginning of the list.
insert
Write the most appropriate list method to add elements at the end of the list.
extend
List1 = [5, 10, 15, 20, 25, 50, 20]
K = List1.index(20)
List1[ K] = 250
print(List1)
[5, 10, 15, 250, 25, 50, 20]
What will be the output of print(list(Str1)) where Str1= ‘Book’?
[‘B’, ‘o’, ‘o’, ‘k’]
What will be the output of print(Count) where Count = L.count(4) and L = [2, 4, 5, 6, 2, 3, 4, 4, 7]?
3
L1 = [500, 600]
L2 = [150, 275, 400]
print(L1 + L2)
L1.append([700,750])
L1.append(800)
print(len(L1))
print(L1)
print(L1.index(800))
print(L1.index(750))
[500, 600, 150, 275, 400]
4
[500, 600, [700, 750], 800]
3
ValueError: 750 is not in list
L3 = [35, 45]
print(L3 * 3)
L3.extend([50,75,80])
print(len(L3))
print(L3)
[35, 45, 35, 45, 35, 45]
5
[35, 45, 50, 75, 80]