1# + is an overloaded operater, meaning it has more than one meaning
2
3firstStr = "This is an "
4secondStr = "example."
5# + can join two strings end to end
6example = firstStr + secondStr
7print(example)
8# Output -> This is an example.
9
10#other things you can do
11other1 = firstStr + "apple"
12other2 = "Stri" + "ng"