Your team is going to write a program as part of a team. Your teacher may require you to come up with your own goal. If not, use the following goal.

You have been asked by a math teacher to write a program to process a pair of points. The program will find the distance between the points, the midpoint of the two points, and the slope between them.

Plan your program. Meet with your team to plan the program. Assign a task to each member of the team. Record each person's name and their task. Write the program. Test your program. Be sure to test each function of your program. Evaluate the performance of each member of the team. Describe what each member did and how it worked. Record the project in a Word (or other word-processing) document, as described below.

PLEASE HELP WILL GIVE BRAINLIEST AND 20 POINTS!

Respuesta :

Answer: I can help you with the code part if you don’t already have it

# Python3 program to calculate

# distance between two points

import math

# Function to calculate distance

def distance(x1 , y1 , x2 , y2):

# Calculating distance

return math.sqrt(math.pow(x2 - x1, 2) +

math.pow(y2 - y1, 2) * 1.0)

# Drivers Code

print("%.6f"%distance(3, 4, 4, 3))

In this exercise we have to use python knowledge to describe the following code.

The code can be found in the attached image.

We have that code will be described as:

import math

# Function to calculate distance

def distance(x1 , y1 , x2 , y2):

# Calculating distance

return math.sqrt(math.pow(x2- x1, 2) +

math.pow(y2 - y1, 2) * 1.0)

# Drivers Code

print("%.6f"%distance(3, 4, 4, 3))

See more about python at brainly.com/question/18502436

#SPJ2

Ver imagen lhmarianateixeira