I have a list with 500 repeating names:
[name1, name2, name1, name7,name2,name1, name1, name1, name134, name11, etc...]
I want to create a list with only the base names for example if there are only N base names then the list should be:
[name1, name2, name3, name4, ... , name(N)]
how would I do this the fast and easy way?
names, you can doset(names)to get unique names. - Chrispresso