You are on page 1of 1

Q Questions Answers (Y/N) Source

1 _____ can delete an entry from a Python list. del Y


2 ___ finds the number of data items in python list len Y
3 a python list=[0,-20,30,40,-500] is created output of min(lst) -500 Y
4 python is/are an ____ software free Y
5 how can 1 access the 2nd item form python list p[a,b,c,d,e] of 5 items P[1] Y
which of the follwing will delete the 3rd item from the list color_names['lemmonade',
6 'pristine green','ivory','tech green', sporty green' ? del Color_Names[2] Y
7 Lists in Python allow you to modify its data items. TRUE Y
8 ______ function adds an item to a Python list at the end of the list. append Y
9 how can 1 access the 3RD item form python list p[a,b,c,d,e] of 5 items p[3-1] Y
10 How can one access the third item from a Python list P[A, B, C, D, E] of 5 items? P[3-1] Y
11 IS IT POSSIBLE TO CREATED A LIST OF LISTS IN PYTHON YES Y
12
13
14
15
16
17
18
19
20
21
22
23
24
25

You might also like