import math def main(): # Define the coordinates of the first point1 as a list. point1 = [5, 0] # Define the coordinates of the second point2 as a list. point2 = [7, 9] distance = math.sqrt(((point1[0] - point2[0]) ** 2) + ((point1[1] - point2[1]) ** 2)) print(distance) if __name__ == "__main__": main()