You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
We should run a check to see if the student's code is reversing the whole string and contains .isalpha but not .isalpha(). That threw me off for a bit.
if c.isalpha (on a character) == True, since it's just verifying that the function exists (it's truthy).
if c.isalpha() == whether or not the character is a letter. Whoops.