Hey,
Can you please help me implement this program using python.
I have a list:
The input
it calculates the successive words in a sub-list, and it updates if it finds a new occurrence in a sub-list
Can you please help me implement this program using python.

I have a list:
The input
list=[["word1", "word2"],["word1", "word2","word1"], ["word4", "word5","word4", "word5", "word2", "word3"]]The output:
Output:out=[
{"word1", "word2",2}, {"word2", "word1",1},{"word4", "word5",2},{"word5", "word4",1},
{"word5", "word2",1},{"word2", "word3",1}
]
how it works:it calculates the successive words in a sub-list, and it updates if it finds a new occurrence in a sub-list
Larz60+ write Feb-27-2021, 02:50 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Fixed for you this time. Please use bbcode tags in future posts.
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Fixed for you this time. Please use bbcode tags in future posts.