Removing duplicates by first changing to a set and then back to a list new_list = list(set(students)) print(new_list) ['R', 'Python', 'Java' ...
確定! 回上一頁