I am starting to learn Python.
Can someone explain why sort() returns None?
alist.sort() ## correct alist = blist.sort() ## NO incorrec
Use the following:
alist = sorted(blist)