triplequoted
Triplequoted refers to string literals delimited by three quotation marks. In languages that support them, such as Python, a triple-quoted string can span multiple lines and include characters that would require escaping in single-line literals. The two common forms are """...""" and '''...'''. In Python, these literals serve as standard string values and are also used for docstrings when placed at the start of a module, class, or function.
Unlike comments, triple-quoted strings are real string objects that exist at runtime. When used as a docstring,
Triple-quoted strings support raw and formatted variants: r"""...""" preserves backslashes without interpreting them; f"""...""" enables expression
Conventions: many Python style guides recommend using triple double quotes for docstrings, and triple quotes can
Other languages, such as Kotlin, offer similar raw-string syntax using triple quotes, but the term triplequoted