I am trying to make this Pig Latin translator in Python and it was working well until I tried to downsize it a bit.
Can someone please take a look at this code and t
You should replace the string:
if low_original[0] == 'a' or 'e' or 'i' or 'o' or 'u':
with:
if low_original[0] in ('a', 'e', 'i', 'o', 'u'):