record = ('Dave', 'dave@example', '88-55-1212', '84-55-1212')
name, email, *phone = record
"""
# Use * if you want to unpack N elements from an
# iterable, but the iterable may be longer than N
# elements, causing a “too many values to unpack” exception.
"""