and · or · not · Concatenation · len() · upper() · lower() · find()
s[start:stop] — start inclusive, stop exclusive+ concatenates strings; * repeats: "ha"*3 → "hahaha"in checks membership: "lo" in "Hello" → Trueword = "Computer"
print(word[3])
print(len(word))
print(word[0:4].upper())