To write a python program to find the distance two 2 points
Start thr program
Write the program appropriately
Substitute the values in the distance formula
Execute the program
Run the program
#Program to find the distance between two points.
#Developed by: RAMESH RENUKA
#RegisterNumber:23009428
import math
list1 = [4,2]
list2 = [10,6]
distance = math.sqrt(((list2[0]-list1[0])**2) + ((list2[1]-list1[1])**2))
print("{:.2f}".format(distance))
Thus distance between two points successfully executed
