split_name(full_name) that splits a "First Last" string on whitespace and returns the first and last name as a 2-tuple (first, last) — demonstrating Python's idiom of returning multiple values as an implicit tuple.split_name('Ada Lovelace')('Ada', 'Lovelace')Split on the single space between the two words.
str.split() with no arguments splits on any whitespace.
Returning "first, last" implicitly builds a tuple.