In Python, a multi-line string can be defined using _______ characters.
- Double quotes
- Single quotes
- Triple quotes
- Triple single-quotes
In Python, a multi-line string can be defined using triple single-quotes ('''...''') or triple double-quotes ("""...""").
Loading...
Related Quiz
- What is the primary use of the pass statement in Python?
- How do you convert a list of lists into a single flat list in Python?
- In which file mode can you read from and write to a file simultaneously?
- What is the maximum length of an identifier (name of a variable, function, etc.) in Python?
- What is the primary purpose of code profiling in Python development?