QuestenaPractice that shows what to review next
Question 22

What is returned by `" red blue ".split()` with no separator argument?

  1. A list containing each individual character
  2. `["red", "blue"]`Correct answer
  3. `["", "red", "", "", "blue", ""]`
  4. The unchanged source string

Explanation

Without an explicit separator, consecutive whitespace acts as one boundary and edge whitespace does not create empty fields. Treating every space independently would introduce empty strings that this form of `split` deliberately omits.

Continue with this test

Start practice
Question 22: What is returned by `" red blue ".split()` with no… · Python Fundamentals · Questena