Strings are similar to arrays ⇒ we can also slice it
s = "abc"
print(s[0:2]) # abStrings are immutable
s[0] = "A" # DOES NOT WORKHowever, we add append to the end of a string. However, it will be an O(n) operation, since it is creating a new string.
s += "def" # O(n) time operationInteger and Strings
Numeric strings can be converted, and numbers can be converted to strings
int('123') + int('123') # 246
str(123) + str(123) # 123123ASCII value of a character
ord("a") # 97Join strings together
Using a delimiter
strings = ["ab", "cd", "ef"]
print("".join(strings)) #abcdef