I need to to define a function make_3rd_form() which given a verb in infinitive form returns its third person singular form.
The third person singular verb form in English is distinguished by the suffix-s, which is added to the stem of the infinitive form: run-> runs.
these are the rules: If the verb ends in y, remove it and add ies
If the verb ends in o, ch, s, sh, x or z, add es
By default just add s.
I think that string method ends with() is the way.
I am new to python so any type of idea would be helpful.