Question: we need to implement the body of this function, and it must be done very simply but not complicated because I'm a beginner. no use

we need to implement the body of this function, and it must be done very simply but not complicated because I'm a beginner. no use of break,continue, print, enumerate statements.
thank you!!!
A address file contains one street address per line, such as: 100 Main Street 23 Spring Park Road 2012 Sunny Lane 4 Martin Luther King Drive An address list" is a list of lists of strs, where each inner list is a 3-element list of street number name, and type. For example, the address list" for the file above is: [['100', 'Main', 'Street'], ['23', 'Spring Park', 'Road'). [.2012', 'Sunny', 'Lane'), ('4', 'Martin Luther King'. Drive']] In the file, a single space separates the number, name and type. The format of each address is: the street number is an integer the street name is one or more words (with words separated by a single space) the street type is one word Complete the following funtion according to its docstring description. def load_addresses (numbers_file): ***(file) -> list of lists of strs Return an "address list" based on the contents of the given "address file
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
