Skip to content
Advertisement

How do I sort the movies according to their star ratings and filter the movies with lower rating than the specified threshold

I want to sort the movies according to their star ratings and filter the movies with lower rating than the specified threshold. I want to sort movie and TV information in descending order by stars, search by each ID, and display data.json format and socre. However, I get a’module’ object does not support item assignment error. context [“movie”] = in movie_list

JavaScript
JavaScript
JavaScript

Advertisement

Answer

If I understand correctly, you should have imported context as a module. If so then the error arises because you are essentially trying to index a module in

JavaScript

this is not supported in python. Say you are trying to store the movies in a ‘movies’ dictionary in the module, then what you should do is:

JavaScript

But I think the module would probably have a method returning the dictionary you need, then you can use:

JavaScript

Same for the tv list.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement