QuestenaPractice that shows what to review next
Question 59

For ordinary Python string ordering, which statements are true? Select all that apply.

  1. It automatically follows the current locale's dictionary order.
  2. It compares lexicographically by Unicode code points.Correct answer
  3. It ignores letter case without being asked.
  4. Uppercase and lowercase can affect the ordering result.Correct answer

Explanation

String ordering compares Unicode code points lexicographically and preserves case distinctions. It does not automatically apply a language's dictionary conventions or fold uppercase and lowercase together.

Continue with this test

Start practice
Question 59: For ordinary Python string ordering, which statements are… · Python Fundamentals · Questena