NLP - Text Generation
Consider this Python code snippet to generate bigrams from a list of words:
What error will this code produce?
words = ['hello', 'world', 'hello'] bigrams = [(words[i], words[i+1]) for i in range(len(words))]
What error will this code produce?
