NLP - Sequence Models for NLP
What will be the output of this code simulating a sequence model?
sentence = ['hello', 'world']
state = ''
for word in sentence:
state += word[0]
print(state)