Write the program in python The Giants, for their fun day, competed in a “dashing” competition where each Giant would dash from one point on a grid-patterned dashing surface to another point on the surface, in the dashing time of 2 minutes. The winner of the competition was the one who dashed the farthest in that 2-minute dashing time. You are given two lists (which can be coded directly into your program)   one called names with the names of each of the 15 Giants who participated in the dashing, and   an associated two-dimensional list/table called startAndEndPoints with 15 rows and 4 columns which stores 4 values for each Giant in a row; two for the starting point (x1, y1) and two for the ending point (x2, y2) of their dash. The first column holds the values for x1, second column holds the value for y1, third column holds the value for x2 and the fourth column holds the value for y2. Each row corresponds to a named dasher in the names list, in the same order. Write a Python program, in a file called dashing.py, to generate a third list called distanceCovered which holds the distance between two points (assuming each Giant dashed in a straight line from the start point to the end point) for each Giant, and find and output the name and the distance covered by the winner of the dashing race, and also the average distance covered by all Giants, with appropriate descriptive labels. The formula to compute the distance between two points (x1, y1 and x2, y2) is: ? = √(?2 − ?1)2 + (?2 − ?1)2 Note: The only built-in functions you are permitted to use in your program are len(), range(), math.sqrt(),math.pow(),append(),andprint(). Youarealsopermittedtomakeanduseyour own functions.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write the program in python

The Giants, for their fun day, competed in a “dashing” competition where each Giant would dash from one point on a grid-patterned dashing surface to another point on the surface, in the dashing time of 2 minutes. The winner of the competition was the one who dashed the farthest in that 2-minute dashing time.

You are given two lists (which can be coded directly into your program)

  •   one called names with the names of each of the 15 Giants who participated in the dashing, and

  •   an associated two-dimensional list/table called startAndEndPoints with 15 rows and 4 columns

    which stores 4 values for each Giant in a row; two for the starting point (x1, y1) and two for the ending point (x2, y2) of their dash. The first column holds the values for x1, second column holds the value for y1, third column holds the value for x2 and the fourth column holds the value for y2. Each row corresponds to a named dasher in the names list, in the same order.

    Write a Python program, in a file called dashing.py, to generate a third list called distanceCovered which holds the distance between two points (assuming each Giant dashed in a straight line from the start point to the end point) for each Giant, and find and output the name and the distance covered by the winner of the dashing race, and also the average distance covered by all Giants, with appropriate descriptive labels.

    The formula to compute the distance between two points (x1, y1 and x2, y2) is:

    ? = √(?2 − ?1)2 + (?2 − ?1)2

    Note: The only built-in functions you are permitted to use in your program are len(), range(), math.sqrt(),math.pow(),append(),andprint(). Youarealsopermittedtomakeanduseyour own functions.

Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education