Tick 2

Write a query in python in a file exerciese2.py.

This query will take three command-line arguments and be executed as python3.5 exercise2.py datapath name1 name2. It should print out the titles of movies in which both name1 and name2 are actors.

For your outout, use the statement print ("%s and %s are coactors in %s" % (name1, name2, title)) where name1, name2, and title are variables in your python code.

Your query should work for any two names, but it will be tested on the command python3.5 exercise2.py data "Matt Damon" "Brad Pitt".