Question: named tuples IT 140: Introduction to Scripting v3 home > 2.2: List basics zyBooks catalog ? Help/FAQ linda ayodele PARTICIPATION ACTIVITY 2.2.8: Named tuples. Assume
named tuples

IT 140: Introduction to Scripting v3 home > 2.2: List basics zyBooks catalog ? Help/FAQ linda ayodele PARTICIPATION ACTIVITY 2.2.8: Named tuples. Assume namedtuple has been imported. Use a list of strings in the namedtuple ( ) constructor where applicable. 1) Complete the following named tuple definition that describes a house. House = ( ' House' , ['street', 'postal_code', 'country' ] ) Check Show answer 2) Create a new named tuple Dog that has the attributes name, breed, and color. Check Show answer 3) Let Address = namedtuple( 'Address', ['street', 'city', 'country' ] ). Create a new address object house where house. street is "221B Baker Street", house. city is "London", and country is "England". Check Show answer 4) Given the following named tuple Car = namedtuple( ' Car', [ 'make' , 'model', 'price', 'horsepower', 'seats ' ] ), and data objects carl and car2, write an expression that computes the sum of the price of both cars. Check Show
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
