Question: The script is supposed to print out the letter "e" if the letter is in the string "Hello," but it doesn't. Please try to fix the script.

for letter in "Hello":
    if letter == "e":
    print(letter)

Expected output:

e 

Hint: The line under an if  statement should always be indented.