KnowledgeBoat Logo
|

Informatics Practices

Define Sequence data type in Python? Give two examples.

Python Funda

1 Like

Answer

A sequence data type is a data structure that holds an ordered collection of items. These items can be of any type, and the sequence maintains their order.

For example — list, string.

Answered By

2 Likes


Related Questions