Question: Write a program that reads in the x - and y - coordinates in Cartesian space for the endpoints of a line segment and then

Write a program that reads in the x-and y-coordinates in Cartesian space for the endpoints of a line segment and then determines if the line segment is parallel to the y-axis. Hint: a line is parallel to the y-axis if it is a vertical.
Your program should print
The line is vertical.
or
The line is not vertical.
Empty print statements are included for output formatting.
1 print("Enter coordinates for the first point.")
x1= int(input("x: "))
y1= int(input("y: "))
print()
print("Enter coordinates for the second point.")
x2= int(input("x: : "))
y2= int(input ("y: "))
print()
if # Your code goes here:
# Your code goes here
else:
# Your code goes here
 Write a program that reads in the x-and y-coordinates in Cartesian

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!