Strings

String Delimiters

How do we know we have a string? What are the ways we can create a string literal? →

Strings vs Variables

What's the difference between lines two and three of the following code? →

foo = "bar"
print(foo)   # line 2
print("foo") # line 3

String Operations

Name some operations that we can perform on strings →

Strings Revisited

zero or more characters!

what's special about the characters in a string? are they jumbled or in a specific order? →

Strings Revisited Continued

Strings as a List of Characters