Answer:
Python lists are indexed using integers and dictionaries can use strings as indexes
Step-by-step explanation:
Python lists can store strings and dictionaries can only store words False
Words are actually strings. This is false because Python dictionaries store strings.
Python dictionaries are a collection and lists are not a collection False
This is false because in Python lists are an ordered collection of items
Python lists are indexed using integers and dictionaries can use strings as indexes True
Python lists are an ordered collection of items. Indexing means referring to the position of the element and this is possible using integer for Python lists and strings for Python dictionaries.