Python - Data Type Strings

Introduction

Strings records textual information and collections of bytes.

Strings are Python sequence-a position-ordered collection of other objects.

Sequences maintain a left-to-right order among the items.

Their items are stored and fetched by their relative positions.

Strings are sequences of one-character strings.

Related Topics