-1
hello i am trying to create a rank system using sqlite3 and python however I am not getting anywhere,when I consult my database it returns me that:
[('002', 5), ('001', 50), ('003', 80)]
where 001...002...003 are the user id and the numbers after are the level as I could take this information and turn it to show the users with higher level to lower, an output like this:
003 80
001 50
002 5
you need an order by in your query
– Gabriel Oliveira