# Add Table
words = ['walk', 'talk']
add_suffix = [w + 'ed' for w in words]
print("Add Table:", add_suffix)  # walked, talked

# Delete Table
inflected = ['playing', 'talking']
base = [w[:-3] for w in inflected]
print("Delete Table:", base)  # play, talk
