asked 197k views
14 votes
Identify the correct characteristics of Python lists. Check all that apply. Python lists are enclosed in curly braces { }. Python lists contain items separated by commas. Python lists are versatile Python data types. Python lists may use single quotes, double quotes, or no quotes.

asked
User AmrataB
by
7.5k points

2 Answers

3 votes

Answer:

a c d

Step-by-step explanation:

answered
User Dan MacBean
by
8.0k points
6 votes

Answer:

Python lists contain items separated by commas.

Python lists are versatile Python data types.

Python lists may uses single quotes, double quotes, or no quotes.

Step-by-step explanation:

Python Lists are enclosed in regular brackets [ ], not curly brackets { }, so this is not a correct characteristic.

answered
User Jden
by
8.0k points