Recommender system

Report a typo

Write a program that recommends one of the following movies based on the age of a user:

<=16<= 16 "Lion King"

172517 - 25 "Trainspotting"

264026 - 40 "Matrix"

416041 - 60 "Pulp Fiction"

>60> 60 "Breakfast at Tiffany's"

The user enters their age and the program outputs one title.

Sample Input 1:

19

Sample Output 1:

Trainspotting

Sample Input 2:

71

Sample Output 2:

Breakfast at Tiffany's
Write a program in Python 3





___

Create a free account to access the full topic