Sort a list of products in reverse alphabetical order in Python

0

They ask me to sort a list of tuples that I have in a file, use

lista = sorted(lista, reverse = True)
print(lista)

And when I run the program I see the previous steps that you made until you get to the ordered list, what I would like to know is how to do so that only the ordered list appears without seeing the previous steps. Thank you very much!

    
asked by abulafia 07.12.2018 в 04:49
source

0 answers