Assuming you want them to be randomly selected and that new_list already defined,
import random new_list += random.sample(old_list, 5)
If new_list is not defined yet, you can simply do
new_list = random.sample(old_list, 5)
If you do not want to change new_list , but want to create new_new_list , then
new_new_list = new_list + random.sample(old_list, 5)
Now links to new_list will still access the list without five new items, but new_new_list will refer to a list with five items.
source share