QuestenaPractice that shows what to review next
Question 15

For a Python string, what does `len(text)` count?

  1. The number of UTF-8 bytes needed after encoding
  2. The number of visual symbols every reader perceives
  3. The number of Unicode code points in the stringCorrect answer
  4. The number of ASCII characters, excluding other text

Explanation

The length operation counts the Unicode code points stored in the string. UTF-8 byte counts depend on a later encoding, while a reader-perceived symbol can itself contain more than one code point.

Continue with this test

Start practice
Question 15: For a Python string, what does `len(text)` count? · Python Fundamentals · Questena