NLP - Word Embeddings
What is wrong with this code snippet that tries to find the embedding for the word 'apple'?
```python
embedding = glove.get('Apple', None)
if embedding is None:
print('Word not found')
else:
print('Embedding found')
```
