📅 2010-Feb-05 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ lists, python, sort ⬩ 📚 Archive
alist = [10, 2, 8] # Returns sorted list of input list blist = sorted(alist) # In-place sort of list alist.sort()