Working with Strings in Python


In this chapter, the theme is strings.
You will learn several ways to work with and write strings in Python.



What Is a String?


A string is, as the name suggests, a sequence of characters.
In Python, strings are usually written using double quotes (" ") or single quotes (' ').

In the examples below, the...