Question: write the script from python 3.6 of this program This program is meant to help you get practice with writing programs to perform more complex
write the script from python 3.6 of this program 
This program is meant to help you get practice with writing programs to perform more complex numerical calculations, and specifically to give you practice with vector calculations V2 Dot product of two vectors is given by: Write a program that calculates the angle between two points, as seen by an observer. Your program should read in: The 3D position of an observer - The 3D position of the first observed point - The 3D position of the second observed point Then, it should calculate and output, in degrees, the angle between the points from the viewer's perspective. The steps for doing this are: Read in the points from the user. Assume the points will be some (x, y, z) coordinates. Calculate components of the two displacement vectors from the observer to each of the observed points Calculate magnitudes of the two displacement vectors Calculate the dot product between the vectors Use the dot product to calculate the angle between the two observed points. Note that the dot product of two normalized vectors gives the cosine of the angle between those vectors. Outputs the answer in degrees
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
