#list_dups.py #some functions to remove duplicates from a list # best is to convert to set. last function. #remove dups of a list in place (for loops over len won't work) def remove_dups(L): i = 0 while i