Imagine you are building an online movie recommender system where users can get personalized recommendations for movies and TV shows.
To start using the service, users should register by filling in a short form where they need to list at least one movie they liked in the past. In the future, users can add more movies or change ratings for the ones added previously to get better recommendations. Occasionally, some users might also want to delete their profile.
Suppose that a user inserted the rating incorrectly and now wants to update it. Write down the HTTP request to add these changes to the user's profile. Use 'http://movies.com/users/[user_id]/ratings', where [user_id] is the id of the user in question (pick any number you like). Additionally, pass the updated data: {'movie_name': 'Frozen', 'movie_rating': '10'}.
You do NOT have to import the requests module or create a variable for your request. A one-line solution is expected.