Trình bày một thuật toán sắp xếp cho một tập dữ liệu số trong Python?

{{FormatNumbertoThousand(model.total_like)}} lượt thích
1.371 lượt xem
Python basic
list = ["1", "4", "0", "6", "9"] list = [int(i) for i in list] list.sort() print (list)
{{login.error}}