0% found this document useful (0 votes)
23 views1 page

Questions Answers (Y/N) Source: Del Len - 500 Free P (1) Del Color - Names (2) Y True Append P (3-1) P (3-1) YES

The document contains a table with questions about Python lists and their associated properties and functions in the left column and the answers in the right column indicated as either True, False or providing an example. The questions cover topics like accessing specific items in a list, built-in functions like del and len, modifying lists, nested lists, and more. All the answers provided are confirmed as correct with a Y in the last column indicating the source of the information.

Uploaded by

Kevin Roy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

Questions Answers (Y/N) Source: Del Len - 500 Free P (1) Del Color - Names (2) Y True Append P (3-1) P (3-1) YES

The document contains a table with questions about Python lists and their associated properties and functions in the left column and the answers in the right column indicated as either True, False or providing an example. The questions cover topics like accessing specific items in a list, built-in functions like del and len, modifying lists, nested lists, and more. All the answers provided are confirmed as correct with a Y in the last column indicating the source of the information.

Uploaded by

Kevin Roy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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