I am very new to python and am learning it just for fun. I am attempting to use it for a small application that shuffles a string list. I need to get a list of about 50 last names in a random order. I tried doing
items = [thing1, thing2, thing3]
random.shuffle(items)
but it tells me i need to define every item in the list. I know there has got to be a way to do this, i just havent figured it out yet. Any suggestions?