Answer:
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Explanation:
The distance formula is the difference of the x coordinates squared, plus the difference of the y coordinates squared, all square rooted. For the general case, it appears you simply need to change how you have written the code.
point_dist = math.sqrt((math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2))
Note, by moving the 2 inside of the pow function, you have provided the second argument that it is requesting.
You were close with your initial attempt, you just had a parenthesis after x1 and y1 when you should not have.
Cheers.
Answer:
the hurts my brain sorry bud cant help
Explanation:
Answer:
Dr. Engelbart, who would later help develop the computer mouse and other personal computing technologies, theorized that as electronic circuits were made smaller, their components would get faster, require less power and become cheaper to produce — all at an accelerating pace
Answer: True
Explanation:
Permanent molds do not collapse, unlike expendable molds so the mold must be opened before appreciable cooling contraction occurs in order to prevent cracks from developing in the casting.
The metal casting becomes solid inside the mold after it has been poured. But during the process of manufacture, before the would cools any further, they usually remove the metal cast in order to stop excess contractions of the solid metal casting in the mold. This is done to prevent prevent cracks from developing in the casting since permanent mold do not collapse.