List WK Flashcards

All solved list ques from the wk

1
Q

List in Python is classified as _____________ data type.

A

list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A list consists of elements of _____________ type.

A

any

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Lists are indexed by an _____________ data type.

A

integer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Elements of a list are enclosed in _____________ brackets.

A

square

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Lists are _____________, you can update or edit the list.

A

mutable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The _____________ method adds a single item to the existing list at the end.

A

append

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The _____________ operator replicates a list.

A

*

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Write the most appropriate list method to get the position of an item in the list.

A

index

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Write the most appropriate list method to add a single element at the end of the list.

A

append

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Write the most appropriate list method to add an element in the beginning of the list.

A

insert

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Write the most appropriate list method to add elements at the end of the list.

A

extend

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

List1 = [5, 10, 15, 20, 25, 50, 20]
K = List1.index(20)
List1[ K] = 250
print(List1)

A

[5, 10, 15, 250, 25, 50, 20]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What will be the output of print(list(Str1)) where Str1= ‘Book’?

A

[‘B’, ‘o’, ‘o’, ‘k’]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What will be the output of print(Count) where Count = L.count(4) and L = [2, 4, 5, 6, 2, 3, 4, 4, 7]?

A

3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

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))

A

[500, 600, 150, 275, 400]
4
[500, 600, [700, 750], 800]
3
ValueError: 750 is not in list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

L3 = [35, 45]
print(L3 * 3)
L3.extend([50,75,80])
print(len(L3))
print(L3)

A

[35, 45, 35, 45, 35, 45]
5
[35, 45, 50, 75, 80]