Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 341 Bytes

string.md

File metadata and controls

13 lines (8 loc) · 341 Bytes

string

A data type in Python that represents a sequence of alphanumeric and/or special characters enclosed within single or double quotes.

For example, the following are all strings:

"hello world!" "The answer is 3" "!!!"

Readings

  • Read more about strings on w3schools.