If I have a list like this:
lst = ["None", "123", "XYZ", "None", "ABC", "None", "QWE" "None"]
how can I put it so that None is displayed only at end and items that are not None are displayed in order like this:
lst_sorted = ["123", "XYZ", "ABC", "QWE", "None" "None", "None", "None"]
Thanks in advance.