letters = ["a","b","c","d","e","f"]
# wirte the name of variables for the first and last
# write an astros for the variable between them
first , *other, last = letters
print(first) # unpacked
print(other) # packed
print(last) # unpack
#output:
#a
#['b', 'c', 'd', 'e']
#f