QuestenaPractice that shows what to review next
Question 18

What is the value of `"ab" * 3`?

  1. `abbb`
  2. `ababab`Correct answer
  3. `ab3`
  4. A TypeError is raised.

Explanation

Multiplication by the nonnegative integer repeats the complete string three times, producing `ababab`. It does not repeat only the ending character, and this combination of operand types is valid.

Continue with this test

Start practice
Question 18: What is the value of `"ab" * 3`? · Python Fundamentals · Questena