The following list is given: numbers = [0, 1, 2, 3, 4] What will be the result of the following operation? sorted(numbers) is numbers

Questions & AnswersCategory: PythonThe following list is given: numbers = [0, 1, 2, 3, 4] What will be the result of the following operation? sorted(numbers) is numbers
Lokesh Kumar Staff asked 3 years ago

The following list is given:

numbers = [0, 1, 2, 3, 4]

What will be the result of the following operation?

sorted(numbers) is numbers

a. True
b. NoneType
c. None
d. False

1 Answers