Question: Import the namedtuple container from collections. Then, define a named tuple called City with fields: name, state, and population, in that order. ''' Your code
Import the namedtuple container from collections. Then, define a named tuple called City with fields: name, state, and population, in that order. ''' Your code goes here ''' city_name = input() state_located = input() population_count = int(input()) city = City(city_name, state_located, population_count) print(f'City name: {city.name}, State: {city.state}, Population: {city.population}')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
