I'm trying to do something like a "conjugator".
Say I have a list of endings:
endings = ['o', 'es', 'e', 'emos', 'eis', 'em']
and I have a verb root as a string:
root = "com"
The way I thought of doing this is:
for ending in endings:
print root + ending
which outputs:
como
comes
come
comemos
comeis
comem
But my desired result is:
como, comes, come, comemos, comeis, comem
How can I achieve exactly this (and with no quotes around each of the resulting items, and no comma after the last item)?