Answer:
The function in Python3 is as follows
def Distance(x1, y1, x2, y2):
dist = ((x1 - x2)**2 +(y1 - y2)**2)**0.5
return dist
Step-by-step explanation:
This defines the function
def Distance(x1, y1, x2, y2):
This calculates distance
dist = ((x1 - x2)**2 +(y1 - y2)**2)**0.5
This returns the calculated distance to the main method
return dist
The results of the inputs is:
![89,34,00,00 \to 95.27](https://img.qammunity.org/2022/formulas/computers-and-technology/college/ma62e1q73g22ztd4wwf2r3fqmdckxybv1n.png)