Strings
Text is everywhere in real code. f-strings are the cleanest way to build it from values.
Put an `f` before the quote and drop expressions inside `{ }`. `len(s)` counts characters; indexing `s[0]` starts at 0 and `s[-1]` is the last.
name = "Ada"
print(f"{name} has {len(name)} letters")