I'm trying to calculate books similarity by comparing the topics lists.
Need to get similarity score from the 2 lists between 0-1.
Example:
book1_topics = ["god", "bible", "book", "holy", "religion", "Christian"]
book2_topics = ["god", "Christ", "idol", "Jesus"]
Tried using wordnet but not sure how to calculate the score.
Any suggestions?