1. String Methods (Built-in Functions) Basic Operations: len(s): Get the length of a string. s[i]: Access the character at index i. Case Handling: s.lower(), s.upper(): Convert to lowercase/uppercase. s.capitalize(), s.title(): Capitalize the...