A simple native way to do it, with directory traversal:
find -type f | xargs -I {} mv {} {}.txt
Will rename every file in place adding extension .txt at the end.
And a more general cool way with parallelization:
find -name "file*.p" | parallel 'f="{}" ; mv -- {} ${f:0:10}trump${f:4}'