Question: Please use Python! 13.20 Game Duration (Structured Types & Branching) OBJECTIVE: A chess tournament needs your help to determine how long each game takes. To

Please use Python!
13.20 Game Duration (Structured Types \& Branching) OBJECTIVE: A chess tournament needs your help to determine how long each game takes. To achieve this, you will use the Game namedtuple, and complete the tasks outlined below. The namedtuple is defined as: Game = namedtuple ('Game', 'start_hour start_minute end_hour end_minute') NOTE: test_game is created \& imported from the module test_data.py into main.py Using test_game from the test_data.py module, print out the time the game began, the time the game finished, and the total duration of the game. Such as below: Beginning time: AA:BB Finishing time: CC:DD The game took X hour (S) and Y minute (S). You can assume that: - the namedtuple is already defined as above; - time ranges from 00:00 to 23:59; - the maximum length of a single game is 23 hours and 59 minutes; - a game can start in one day and end in the next day
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
