Answer:
Exposition means a comprehensive description and explanation of an idea or theory.
Havinh=g the software to do it all
This isn’t twitter but anyways the answer is 29
This is for Python
numbers = [7, 3, 6, 9, 0]
print(numbers.sort())
Output: [0, 3, 6, 7, 9]
numbers = [7, 3, 6, 9, 0]
print(numbers.sort(reverse = True))
Output: [9, 7, 6, 3, 0]