String Data Type

A string is a snippet of text of any length.

type('woof') # str  
'woof'  
"woof"  
"19"  

In Python, strings are enclosed by either single quotes or double quotes.