Instructions:
Call the .find() method to the ‘alphabet’ variable.
Pass text[0] to the method.
Type the correct code in this post.
text = ‘Hello World’
shift = 3
alphabet = ‘abcdefghijklmnopqrstuvwxyz’
print(alphabet.find(text[0]))
### Challenge Information:
Learn String Manipulation by Building a Cipher - Step 13
https://www.freecodecamp.org/learn/scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/step-13