I've been given an assignment from my department and, no matter how much research I'm conducting on this, I just can't seem to come up with a code which will actually run. Here's the outline:
"""Count the e's in a string, using for loop.
Test data (you should add more):
input: 'Every e please.' output: 5
Params: s (string)
Returns: (int) #e in s, either lowercase or uppercase
"""
enter code here
Could anyone help me out with this? Only for loops can be used to come up with a code.