KnowledgeBoat Logo

Informatics Practices

Define Sequence data type in Python? Give two examples.

Python Funda

2 Likes

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

1 Like


Related Questions