python list ascending and descending order code example
Example 1: sort a list of ints python in descending order
print sorted(ListB, reverse=True)
Example 2: sorting in python
python list sort()
print sorted(ListB, reverse=True)
python list sort()